Home
last modified time | relevance | path

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

/bionic/libc/upstream-freebsd/lib/libc/stdio/
Dputchar.c60 retval = __sputc(c, so); in putchar()
69 return (__sputc(ch, stdout)); in putchar_unlocked()
Dputc.c55 retval = __sputc(c, fp); in putc()
64 return (__sputc(ch, fp)); in putc_unlocked()
/bionic/libc/include/
Dstdio.h375 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)