Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 1
#include 
2
long ftell(FILE* file)
3
{
6433 siemargl 4
    if(!file)
5
    {
6
        errno = E_INVALIDPTR;
7
        return -1L;
8
    }
9
 
647 andrew_pro 10
	return file->filepos;
6433 siemargl 11
}