dirent.h 395 B

12345678910111213
  1. /* <dirent.h> includes <sys/dirent.h>, which is this file. On a
  2. system which supports <dirent.h>, this file is overridden by
  3. dirent.h in the libc/sys/.../sys directory. On a system which does
  4. not support <dirent.h>, we will get this file which uses #error to force
  5. an error. */
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #error "<dirent.h> not supported"
  10. #ifdef __cplusplus
  11. }
  12. #endif