home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
gnu
/
includ87.lzh
/
INCLUD87
/
DIR.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-30
|
421b
|
19 lines
/*
* kludge city: fake out BSD'ish compatible dir routines with
* our Posix comaptible portable dir stuff
*/
#ifndef _SYS_DIR_H
#define _SYS_DIR_H
#ifdef _DIRENT_H
# error "<sys/dir.h>: You cannot use both <dirent.h> and <sys/dir.h>. \n\
<sys/dir.h> is provided for BSD compatibility\n"
#endif
/* note that the presence of _SYS_DIR_H causes dirent.h to
* behave differently
*/
#include <dirent.h>
#endif