- t2ex
- bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
445: #define getchar() getc(stdin)
446: #define putchar(x) putc(x, stdout)
447: #define getchar_unlocked() getc_unlocked(stdin)
- bsd_source/lib/libc/src_bsd/stdio/fputc.c - 1.8KB - 41 lines
39: {
40: return (putc(c, fp));
41: }
- bsd_source/lib/libc/src_bsd/stdio/putchar.c - 2.1KB - 59 lines
57:
58: return (putc(c, so));
59: }
- bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
508: #define getchar() getc(stdin)
509: #define putchar(x) putc(x, stdout)
510: