source: rtems/c/src/exec/libcsupport/src/scandir.c @ d3b34d2

4.104.114.84.95
Last change on this file since d3b34d2 was d3b34d2, checked in by Joel Sherrill <joel.sherrill@…>, on 10/22/98 at 16:15:40

Changed all of these to stubs.

  • Property mode set to 100644
File size: 389 bytes
Line 
1/*
2 *  scandir() - POSIX 1003.1b - XXX
3 *
4 *  $Id$
5 */
6
7#include <sys/types.h>
8#include <sys/stat.h>
9#include <dirent.h>
10#include <stdlib.h>
11#include <string.h>
12#include <errno.h>
13
14int scandir(
15  const char      *dirname,
16  struct dirent ***namelist,
17  int             (*select)(struct dirent *),
18  int             (*dcomp)(const void *, const void *)
19)
20{
21  errno = ENOSYS;
22  return -1;
23}
Note: See TracBrowser for help on using the repository browser.