gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:__sseterr from t2ex/bsd_source/lib/libc/src_bsd/stdio/stdio.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/stdio/stdio.c - 3.3KB - 92 lines
53:         else
54:                 {fp->_flags &= ~__SOFF; __sseterr(fp, ret); ret = -1; }       /* paranoia */
55:         return (ret);
67: ret = __libc_write(fp->_file, buf, n); 68: if (ret < 0) { __sseterr(fp, ret); ret = -1; } 69: return ret;
78: ret = __libc_lseek(fp->_file, (off_t)offset, whence); 79: if (/*ret == (off_t)-1)*/ret < 0) __sseterr(fp, (int)ret), ret = -1, fp->_flags |= __SERR, 80: fp->_flags &= ~__SOFF;
90: { 91: int ret = __libc_close(((FILE *)cookie)->_file); if (ret < 0) { __sseterr((FILE *)cookie, ret); return -1; } return 0; 92: }