| 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); } |
| 202 | __INLINE__ char* fgets_unlocked(char* s, int n, FILE* f){ return _std_fgets(s,n,f); } |
| 203 | __INLINE__ char* gets_unlocked(char* s) { return _std_gets(s); } |
| 204 | __INLINE__ int vscanf(const char* fmt, va_list a) { return _std_vscanf(fmt,a); } |
no outgoing calls