aboutsummaryrefslogtreecommitdiff
path: root/libio/stdio/fseek.c
blob: b80067da1c0a7509640189d33ec2c841c008e821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);
}