| 196 | __INLINE__ int getc(FILE* f) { return _std_getc(f); } |
| 197 | __INLINE__ int getc_unlocked(FILE* f) { return _std_getc(f); } |
| 198 | __INLINE__ int getchar(void) { return _std_getchar(); } |
| 199 | __INLINE__ int getchar_unlocked(void) { return _std_getchar(); } |
| 200 | __INLINE__ int ungetc(int c, FILE* f) { return _std_ungetc(c,f); } |
| 201 | __INLINE__ char* fgets(char* s, int n, FILE* f) { return _std_fgets(s,n,f); } |
no outgoing calls