File: test_mkdir.c

package info (click to toggle)
tmperamental 1.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 84 kB
  • sloc: ansic: 157; makefile: 57; sh: 20
file content (10 lines) | stat: -rw-r--r-- 140 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#undef _FILE_OFFSET_BITS
#undef _TIME_BITS

#include <sys/stat.h>

int main(int argc, char **argv)
{
	mkdir("/tmp/moo", 0777);
	return 0;
}