home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / stdwin / Ports / vtrm / os.h next >
Encoding:
C/C++ Source or Header  |  1991-05-14  |  739 b   |  34 lines  |  [TEXT/????]

  1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1991. */
  2.  
  3. /* Auto-configuration file for vtrm.
  4.    Edit this if you have portability problems. */
  5.  
  6. #include <stdio.h>
  7. #include <ctype.h>
  8. #include <string.h>        /* Or <strings.h> for 4.2 BSD */
  9.  
  10. /* is this a termio system ? */
  11. #ifdef SYSV
  12. #define HAS_TERMIO
  13. #endif
  14.  
  15. /* 4.2 BSD select() system call available ? */
  16. #ifndef SYSV
  17. #define HAS_SELECT
  18. #endif
  19.  
  20. /* can #include <signal.h> ? */
  21. #define SIGNAL
  22.  
  23. #ifdef SIGNAL
  24. #define SIGTYPE void
  25. /* type returned by signal handler function: (used to be int) */
  26. #endif
  27.  
  28. /* can #include <setjmp.h> ? */
  29. #define SETJMP
  30.  
  31. /* VOID is used in casts only, for quieter lint */
  32. /* make it empty if your compiler doesn't have void */
  33. #define VOID (void)
  34.