mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-06 14:40:43 +00:00
17 lines
229 B
C
17 lines
229 B
C
#include <stdio.h>
|
|
|
|
/* Just cat the GNUmakefle
|
|
*/
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
FILE *f = fopen("GNUmakefile", "rb");
|
|
int c;
|
|
|
|
while ((c = fgetc(f)) != EOF)
|
|
putchar(c);
|
|
fclose(f);
|
|
fflush(stdout);
|
|
return 0;
|
|
}
|
|
|