Home
last modified time | relevance | path

Searched refs:__sgetc (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/upstream-freebsd/lib/libc/stdio/
Dgetchar.c58 retval = __sgetc(stdin); in getchar()
67 return (__sgetc(stdin)); in getchar_unlocked()
Dgetc.c55 retval = __sgetc(fp); in getc()
64 return (__sgetc(fp)); in getc_unlocked()
/bionic/libc/include/
Dstdio.h373 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++)) macro
410 #define getc(fp) (!__isthreaded ? __sgetc(fp) : (getc)(fp))
422 #define getc_unlocked(fp) __sgetc(fp)