gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:__sfeof (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
413: #define __sseterr(p,eno) ((void)((p)->_flags |= __SERR, (p)->_er = (eno) & 0xffff))
414: #define feof(p)         (!__isthreaded ? __sfeof(p) : (feof)(p))
415: #define ferror(p)       (!__isthreaded ? __sferror(p) : (ferror)(p))
bsd_source/lib/libc/src_bsd/stdio/feof.c - 1.9KB - 51 lines
47:         FLOCKFILE(fp);
48:         ret = __sfeof(fp);
49:         FUNLOCKFILE(fp);
bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
498: #if !defined(_REENTRANT) && !defined(_PTHREADS)
499: #define feof(p)         __sfeof(p)
500: #define ferror(p)       __sferror(p)