aboutsummaryrefslogtreecommitdiff
path: root/src/dirent/telldir.c
blob: a8b22f03d9266400c6221da833e36926857f365b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <dirent.h>
#include "__dirent.h"

long telldir(DIR *dir)
{
	return dir->tell;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif