diff options
Diffstat (limited to 'libio/stdio/fseek.c')
-rw-r--r-- | libio/stdio/fseek.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libio/stdio/fseek.c b/libio/stdio/fseek.c new file mode 100644 index 00000000000..b80067da1c0 --- /dev/null +++ b/libio/stdio/fseek.c @@ -0,0 +1,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); +} |