Home
last modified time | relevance | path

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

/freebsd/lib/libc/stdio/
H A Dputchar.c56 retval = __sputc(c, so); in putchar()
65 return (__sputc(ch, stdout)); in putchar_unlocked()
H A Dputc.c51 retval = __sputc(c, fp); in putc()
60 return (__sputc(ch, fp)); in putc_unlocked()
H A Dfputc.c49 return (__sputc(c, fp)); in fputc_unlocked()
H A Dfputwc.c61 if (__sputc((unsigned char)buf[i], fp) == EOF) in __fputwc()
/freebsd/include/
H A Dstdio.h481 static __inline int __sputc(int _c, FILE *_p) { in __sputc() function
491 #define __sputc(c, p) \ macro
519 #define putc(x, fp) (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp))
533 #define fputc_unlocked(s, p) __sputc(s, p)
537 #define putc_unlocked(x, fp) __sputc(x, fp)
/freebsd/stand/powerpc/boot1.chrp/
H A Dboot1.c76 static int __sputc(char c, void *arg);
701 ret = __printf(fmt, __sputc, &sp, ap); in vsnprintf()
816 __sputc(char c, void *arg) in __sputc() function