blob: 0aa8a72c54d622574a32775100249e5bc7584d7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <sys/types.h>
#include <dirent.h>
#include <unistd.h>
#include "_dirent.h"
long telldir(DIR * dirp)
{
return lseek(dirp->fd, 0, SEEK_CUR);
}
/*
XOPEN(4)
*/
|