2012-02-06 02:04:41 +04:00
|
|
|
/* vim:tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
*
|
2012-07-07 08:08:28 +04:00
|
|
|
* mkdir
|
|
|
|
*
|
|
|
|
* Create a directory.
|
2012-02-06 02:04:41 +04:00
|
|
|
*/
|
|
|
|
#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;
|
|
|
|
}
|