summaryrefslogtreecommitdiff
path: root/src/dirent/seekdir.c
blob: c93ecd0addf12bb9be40ffecf07e29051734ea18 (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"

void seekdir(DIR * dirp, long loc)
{
	lseek(dirp->fd, loc, SEEK_SET);
}

/*
XOPEN(4)
*/


#endif