Home | History | Annotate | Download | only in stdio

Lines Matching refs:fp

45 	FILE *fp;
51 if ((fp = __sfp()) == NULL)
54 fp->_flags = 0; /* release */
57 fp->_file = f;
58 fp->_flags = flags;
59 fp->_cookie = fp;
60 fp->_read = __sread;
61 fp->_write = __swrite;
62 fp->_seek = __sseek;
63 fp->_close = __sclose;
74 (void) __sseek((void *)fp, (fpos_t)0, SEEK_END);
75 return (fp);