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

/freebsd-current/lib/libc/stdio/
H A Dputchar.c54 /* Orientation set by __sputc() when buffer is full. */
56 retval = __sputc(c, so);
65 return (__sputc(ch, stdout));
H A Dputc.c49 /* Orientation set by __sputc() when buffer is full. */
51 retval = __sputc(c, fp);
60 return (__sputc(ch, fp));
H A Dfputc.c47 /* Orientation set by __sputc() when buffer is full. */
49 return (__sputc(c, fp));
H A Dfputwc.c61 if (__sputc((unsigned char)buf[i], fp) == EOF)
/freebsd-current/include/
H A Dstdio.h463 static __inline int __sputc(int _c, FILE *_p) { function
473 #define __sputc(c, p) \ macro
505 #define putc(x, fp) (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp))
519 #define fputc_unlocked(s, p) __sputc(s, p)
523 #define putc_unlocked(x, fp) __sputc(x, fp)
/freebsd-current/stand/powerpc/boot1.chrp/
H A Dboot1.c74 static int __sputc(char c, void *arg);
702 ret = __printf(fmt, __sputc, &sp, ap);
817 __sputc(char c, void *arg) function

Completed in 256 milliseconds