- t2ex
- bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
428: */
429: #define putc(x, fp) (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp))
430: #endif /* __BSD_VISIBLE */
- More results from stdio.h
- bsd_source/lib/libc/src_bsd/stdio/putc.c - 2.3KB - 68 lines
50: _SET_ORIENTATION(fp, -1);
51: return (__sputc(c, fp));
52: }
- bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
503: #define getc(fp) __sgetc(fp)
504: #define putc(x, fp) __sputc(x, fp)
505: #endif /* !_REENTRANT && !_PTHREADS */
- More results from stdio.h