Home
last modified time | relevance | path

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

/netbsd/src/lib/libc/stdio/
Dputchar.c61 r = __sputc(c, fp); in putchar()
69 return __sputc(c, stdout); in putchar_unlocked()
Dputc.c62 r = __sputc(c, fp); in putc()
71 return __sputc(c, fp); in putc_unlocked()
Dfputc.c56 r = __sputc(c, fp); in fputc()
/netbsd/src/include/
Dstdio.h462 static __inline int __sputc(int _c, FILE *_p) { in __sputc() function
472 #define __sputc(c, p) \
495 #define putc(x, fp) __sputc(x, fp)
522 #define putc_unlocked(x, fp) __sputc(x, fp)
/netbsd/src/distrib/utils/libhack/
Dmultibyte.c168 return __sputc(wc & 0xFF, stream); in __fputwc_unlock()