File: test_creat.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 (11 lines) | stat: -rw-r--r-- 159 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#undef _FILE_OFFSET_BITS
#undef _TIME_BITS

#include <sys/stat.h>
#include <fcntl.h>

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