|
|
1.1 root 1: /*
2: * Standard I/O Library
3: * Reopen file given structure ptr
4: */
5:
6: #include <stdio.h>
7:
8: FILE *
9: freopen(name, type, fp)
10: char *name, *type;
11: FILE *fp;
12: {
13: extern FILE *_fopen();
14:
15: fclose(fp);
16: return (_fopen(name, type, fp, -1));
17: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.