Home | History | Annotate | Download | only in lib

Lines Matching refs:fseeko

320 /* Provide fseek, fseeko functions that are aware of a preceding
322 # define fseeko rpl_fseeko
323 extern int fseeko (FILE *fp, off_t offset, int whence);
324 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
327 # undef fseeko
328 # define fseeko(f,o,w) \
329 (GL_LINK_WARNING ("fseeko is unportable - " \
330 "use gnulib module fseeko for portability"), \
331 fseeko (f, o, w))
341 "use fseeko function for handling of large files"), \
351 "use fseeko function for handling of large files"), \