toaruos/userspace/mkdir.c
Kevin Lange c88d6dcb4f Add or update the heading comments for user apps.
Adds useful descriptions to ones that were lacking them, updates ones
that were innacurate, etc.
2012-07-06 21:08:28 -07:00

21 lines
313 B
C

/* vim:tabstop=4 shiftwidth=4 noexpandtab
*
* mkdir
*
* Create a directory.
*/
#include <stdio.h>
#include <syscall.h>
#include <stdint.h>
int main(int argc, char ** argv) {
if (argc < 2) {
fprintf(stderr, "%s: expected argument\n", argv[0]);
return 1;
}
syscall_mkdir(argv[1], 0x00);
return 0;
}