gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for funcall:__sfileno (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
418: #if __POSIX_VISIBLE
419: #define fileno(p)       (!__isthreaded ? __sfileno(p) : (fileno)(p))
420: #endif
bsd_source/lib/libc/src_bsd/stdio/fileno.c - 2.0KB - 51 lines
47:         FLOCKFILE(fp);
48:         ret = __sfileno(fp);
49:         FUNLOCKFILE(fp);
bsd_source/lib/libc/src_bsd/stdio/fseek.c - 8.9KB - 261 lines
63:          */
64:         if ((seekfn = fp->_seek) == NULL || isatty(__sfileno(fp))) {
65:                 __sseterr(fp, ESPIPE);                        /* historic practice */
bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
513: #if !defined(_REENTRANT) && !defined(_PTHREADS)
514: #define fileno(p)       __sfileno(p)
515: #endif /* !_REENTRANT && !_PTHREADS */