File: test_fopen.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-- 158 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#undef _FILE_OFFSET_BITS
#undef _TIME_BITS

#include <stdio.h>

int main(int argc, char **argv)
{
	FILE* f = fopen("/tmp/moo", "w");
	fclose(f);
	return 0;
}