blob: b80067da1c0a7509640189d33ec2c841c008e821 [file] [log] [blame]
#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);
}