blob: 24efd6c57857162a659bb919346e7427aee5a331 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#if 0
#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)
*/
#endif
|