home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0638.ZIP / CCE_0638 / UPDATE / UPDATE29.ZOO / editline / atarist.h next >
C/C++ Source or Header  |  1993-03-28  |  562b  |  32 lines

  1. /*  $Revision: 1.1 $
  2. **
  3. **  Editline system header file for atarist.
  4. */
  5.  
  6. #define CRLF        "\r\n"
  7. #define FORWARD        STATIC
  8.  
  9. #include <compiler.h>
  10. #include <sys/types.h>
  11. #include <sys/stat.h>
  12. #include <dirent.h>
  13. #include <memory.h>
  14. #include <string.h>
  15. #include <unistd.h>
  16. #include <ioctl.h>
  17.  
  18. #ifndef __MINT__
  19. #undef TIOCGWINSZ
  20. #undef TIOCSWINSZ
  21. #endif
  22.  
  23. #define SIZE_T __SIZE_TYPEDEF__
  24. typedef struct dirent    DIRENTRY;
  25. #if    !defined(S_ISDIR)
  26. #define S_ISDIR(m)        (((m) & S_IFMT) == S_IFDIR)
  27. #endif    /* !defined(S_ISDIR) */
  28.  
  29. #ifndef HAVE_STDLIB
  30. #define HAVE_STDLIB 1
  31. #endif
  32.