DEBSOURCES
Skip Quicknav
sources / tmperamental / 1.6 / tests / test_fopen.c
1234567891011
#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; }