21 lines
338 B
C
21 lines
338 B
C
/* 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;
|
|
}
|