gcc/libio/stdio/fseek.c
Jason Merrill 6599da043e Initial revision
From-SVN: r14877
1997-08-21 18:57:35 -04:00

13 lines
194 B
C

#include "stdio.h"
#include "libioP.h"
int
fseek(fp, offset, whence)
_IO_FILE* fp;
long int offset;
int whence;
{
CHECK_FILE(fp, -1);
return _IO_fseek(fp, offset, whence);
}