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 <stdint.h>
|
|
|
|
|
2014-05-12 04:40:16 +04:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2012-02-06 02:04:41 +04:00
|
|
|
int main(int argc, char ** argv) {
|
|
|
|
if (argc < 2) {
|
|
|
|
fprintf(stderr, "%s: expected argument\n", argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-05-12 04:40:16 +04:00
|
|
|
mkdir(argv[1], 0x00);
|
2012-02-06 02:04:41 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|