summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/seekdir.c
blob: e591adbb9f0612d4b3ff2e7d7828aa5ab4f5bffb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 *  seekdir() - POSIX 1003.1b - XXX
 *
 *  $Id$
 */

#include <sys/param.h>
#include <assert.h>
#include <dirent.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>

void seekdir(
  DIR  *dirp,
  long  loc
)
{
  errno = ENOSYS;
  return -1;
}