mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-11 21:15:30 -04:00

Move to folder with tcc. Part 1 git-svn-id: svn://kolibrios.org@8793 a494cfbc-eb01-0410-851d-a64ba20cac60
6 lines
84 B
C
6 lines
84 B
C
#include <stdio.h>
|
|
|
|
long int ftell(FILE *stream) {
|
|
return stream->position;
|
|
}
|