musl-tcc/src/dirent/telldir.c
2022-03-20 16:48:53 +08:00

8 lines
89 B
C

#include <dirent.h>
#include "__dirent.h"
long telldir(DIR *dir)
{
return dir->tell;
}