Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
0d8cd362521dadfbf1b8125bb69cb936967de41f
[fs/lustre-release.git]
/
lustre
/
tests
/
mcreate.c
1
#include <stdio.h>
2
#include <sys/types.h>
3
#include <sys/stat.h>
4
#include <errno.h>
5
#include <string.h>
6
#include <fcntl.h>
7
#include <unistd.h>
8
9
int main(int argc, char ** argv)
10
{
11
int rc;
12
13
if (argc < 2) {
14
printf("Usage %s filename\n", argv[0]);
15
return 1;
16
}
17
18
rc = mknod(argv[1], S_IFREG| 0444, 0);
19
if (rc) {
20
printf("error: %s\n", strerror(errno));
21
}
22
return rc;
23
}