Searched refs:__sputc (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/upstream-freebsd/lib/libc/stdio/ |
D | putchar.c | 60 retval = __sputc(c, so); in putchar() 69 return (__sputc(ch, stdout)); in putchar_unlocked()
|
D | putc.c | 55 retval = __sputc(c, fp); in putc() 64 return (__sputc(ch, fp)); in putc_unlocked()
|
/bionic/libc/include/ |
D | stdio.h | 375 static __inline int __sputc(int _c, FILE *_p) { in __sputc() function 385 #define __sputc(c, p) \ 417 #define putc(x, fp) (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp)) 428 #define putc_unlocked(x, fp) __sputc(x, fp)
|