gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for funcall:putc_unlocked (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
447: #define getchar_unlocked()      getc_unlocked(stdin)
448: #define putchar_unlocked(c)     putc_unlocked(c, stdout)
449: 
bsd_source/lib/libc/src_bsd/stdio/putc.c - 2.3KB - 68 lines
64:         FLOCKFILE(fp);
65:         ret = putc_unlocked(c, fp);
66:         FUNLOCKFILE(fp);
bsd_source/lib/libc/src_bsd/stdio/putchar.c - 2.1KB - 59 lines
44: 
45:         return (putc_unlocked(c,so));
46: }
bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
523: #define getchar_unlocked()      getc_unlocked(stdin)
524: #define putchar_unlocked(x)     putc_unlocked(x, stdout)
525: #endif /* _POSIX_C_SOURCE >= 199506 || _XOPEN_SOURCE >= 500 || _REENTRANT... */