1234567891011121314151617 |
- #include "_stdio.h"
- #ifndef __DO_LARGEFILE
- # define FILEDES_ARG (-1)
- #endif
- FILE *fopen(const char * __restrict filename, const char * __restrict mode)
- {
- return _stdio_fopen(((intptr_t) filename), mode, NULL, FILEDES_ARG);
- }
|