blob: a10da3a42097e02edd4003e59680076f4ce7e12b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* pANS stdio -- fopen
*/
#include "iolib.h"
FILE *fopen(const char *name, const char *mode){
FILE *f;
if((f = _IO_newfile()) == NULL)
return NULL;
return freopen(name, mode, f);
}
|