mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-27 14:39:40 +08:00
13 lines
194 B
C
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);
|
||
|
}
|