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

#include <dirent.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>

DIR *opendir(
  const char *name
)
{
  return NULL;
}