forked from KolibriOS/kolibrios
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;
|
||
|
}
|