home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Source Code
/
C
/
Applications
/
Python 1.4
/
stdwin
/
Tools
/
dirent.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-12-21
|
210 b
|
10 lines
|
[
TEXT/CWIE
]
/* A hack to compensate the absence of <dirent.h> on BSD systems.
Remove this file if it bothers you. */
#ifdef SYSV
#include "/usr/include/dirent.h"
#else
#include <sys/dir.h>
#define dirent direct
#endif