forked from KolibriOS/kolibrios
libc testsuite + fixes
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
#include <stdio.h>
|
||||
int fsetpos(FILE* file,const fpos_t * pos)
|
||||
{
|
||||
if(!file || !pos)
|
||||
{
|
||||
errno = E_INVALIDPTR;
|
||||
return errno;
|
||||
}
|
||||
|
||||
if (*pos>=0)
|
||||
{
|
||||
file->filepos=*pos;
|
||||
@@ -8,4 +14,4 @@ int fsetpos(FILE* file,const fpos_t * pos)
|
||||
}
|
||||
else
|
||||
return EOF;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user