toaruos/userspace/mkdir.c

21 lines
338 B
C
Raw Normal View History

2012-02-06 02:04:41 +04:00
/* vim:tabstop=4 shiftwidth=4 noexpandtab
*
* Hello World!
*/
#include <stdio.h>
#include <syscall.h>
#include <stdint.h>
DEFN_SYSCALL2(mkdir, 34, char *, uint32_t)
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;
}