Searched refs:__sputc (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/upstream-freebsd/lib/libc/stdio/
H A Dputc.c53 /* Orientation set by __sputc() when buffer is full. */
55 retval = __sputc(c, fp);
64 return (__sputc(ch, fp));
H A Dputchar.c58 /* Orientation set by __sputc() when buffer is full. */
60 retval = __sputc(c, so);
69 return (__sputc(ch, stdout));
/bionic/libc/include/
H A Dstdio.h375 static __inline int __sputc(int _c, FILE *_p) { 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)

Completed in 673 milliseconds