gcc/libio/stdio/fseek.c

13 lines
194 B
C
Raw Normal View History

1997-08-22 00:57:35 +02:00
#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);
}