source: rtems/c/src/exec/libcsupport/src/opendir.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: 190 bytes
Line 
1/*
2 *  opendir() - POSIX 1003.1b - XXX
3 *
4 *  $Id$
5 */
6
7#include <dirent.h>
8#include <fcntl.h>
9#include <stdlib.h>
10#include <unistd.h>
11
12DIR *opendir(
13  const char *name
14)
15{
16  return NULL;
17}
Note: See TracBrowser for help on using the repository browser.