URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass52-frag.c] - Rev 747
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> void writestuff (FILE *f) { fprintf (f, "hello world\n"); fputc ('y', f); putc ('e', f); } void readstuff (FILE *f) { int c, d; char stuff[100], *s; c = fgetc (f); ungetc (c, f); d = fgetc (f); s = fgets (stuff, sizeof(stuff), f); } int main () { FILE *f; writestuff (stdout); writestuff (stderr); f = fopen ("/dev/null", "w"); writestuff (f); fclose (f); f = fopen ("/dev/zero", "r"); readstuff (f); f = freopen ("/dev/null", "w", f); writestuff (f); fclose (f); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log