slinclud.h 474 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef _SLANG_INCLUDE_H_
  2. #define _SLANG_INCLUDE_H_
  3. #define SLANG_SOURCE_ 1
  4. #include "config.h"
  5. #include "sl-feat.h"
  6. #include <stdio.h>
  7. #include <string.h>
  8. #if defined(__QNX__) && defined(__WATCOMC__)
  9. # include <unix.h>
  10. #endif
  11. #ifdef HAVE_STDLIB_H
  12. # include <stdlib.h>
  13. #endif
  14. #ifdef HAVE_UNISTD_H
  15. # include <unistd.h>
  16. #endif
  17. #ifdef HAVE_MALLOC_H
  18. # include <malloc.h>
  19. #endif
  20. #ifdef HAVE_MEMORY_H
  21. # include <memory.h>
  22. #endif
  23. #endif /* _SLANG_INCLUDE_H_ */