libc testsuite + fixes

git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
siemargl
2016-05-19 12:15:22 +00:00
parent cd8030cee3
commit ace23ebbe2
86 changed files with 3327 additions and 197 deletions

View File

@@ -2,6 +2,12 @@
int fseek(FILE* file,long offset,int origin)
{
fpos_t pos;
if(!file)
{
errno = E_INVALIDPTR;
return errno;
}
if (origin==SEEK_CUR)
offset+=file->filepos;
else if (origin==SEEK_END)
@@ -9,5 +15,5 @@ int fseek(FILE* file,long offset,int origin)
else if (origin!=SEEK_SET)
return EOF;
pos = offset;
return fsetpos(file, &pos);
}
return fsetpos(file, &pos);
}