mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-28 19:20:51 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32187 72102866-910b-0410-8b05-ffd578937521
17 lines
229 B
Objective-C
17 lines
229 B
Objective-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;
|
|
}
|
|
|