mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-11-28 03:39:35 +03:00
efd8f1922c
git-svn-id: svn://kolibrios.org@5266 a494cfbc-eb01-0410-851d-a64ba20cac60
6 lines
97 B
C
6 lines
97 B
C
#include <stdio.h>
|
|
int fgetpos(FILE* file,fpos_t* pos)
|
|
{
|
|
*pos=file->filepos;
|
|
return 0;
|
|
} |