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 >
C/C++ Source or Header  |  1992-07-20  |  421b  |  19 lines

  1. /*
  2.  * kludge city: fake out BSD'ish compatible dir routines with
  3.  * our Posix comaptible portable dir stuff
  4.  */
  5.  
  6. #ifndef _SYS_DIR_H
  7. #define _SYS_DIR_H
  8.  
  9. #ifdef _DIRENT_H
  10. #  error "<sys/dir.h>: You cannot use both <dirent.h> and <sys/dir.h>. \n\
  11.         <sys/dir.h> is provided for BSD compatibility\n"
  12. #endif
  13.  
  14. /* note that the presence of _SYS_DIR_H causes dirent.h to
  15.  * behave differently
  16.  */
  17. #include <dirent.h>
  18. #endif
  19.