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


#include <sys/types.h>
#include <dirent.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>

int closedir(
  register DIR *dirp
)
{
  errno = ENOSYS;
  return -1;
}