home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
sys
/
dir.h
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
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