Files
foc/l4/tool/gendep/simple-cat.c
2013-01-11 17:00:47 +01:00

12 lines
168 B
C

#include <stdio.h>
#include "gendep.h"
int main ()
{
int c;
FILE * f=fopen ("Makefile","r");
while ((c = fgetc (f)) != EOF)
fputc (c, stderr);
return 0;
}