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

#include <dirent.h>

struct dirent *readdir(
  register DIR *dirp
)
{
  return NULL;
}