Moved the right functions into the right files.

This commit is contained in:
jshepher 2004-12-20 01:49:07 +00:00
parent 96e0e3d2f9
commit 93758f1c10
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#include <stdio.h>
int fsetpos(FILE *stream,fpos_t *pos)
{ return fseek(stream,*pos,SEEK_SET); }
int fgetpos(FILE *stream,fpos_t *pos)
{ *pos=ftell(stream); return 0; }

View File

@ -1,4 +1,4 @@
#include <stdio.h>
int fgetpos(FILE *stream,fpos_t *pos)
{ *pos=ftell(stream); return 0; }
int fsetpos(FILE *stream,fpos_t *pos)
{ return fseek(stream,*pos,SEEK_SET); }