sysidf.h 575 B

123456789101112131415161718192021222324252627
  1. /*
  2. Provisional arrangement for determining the system on which
  3. the program is being translated.
  4. */
  5. /* $Id$ */
  6. #include <local.h>
  7. #ifdef BSD4_1
  8. #define BSD_X
  9. #endif /* BSD4_1 */
  10. #ifdef BSD4_2
  11. #define BSD_X
  12. #endif /* BSD4_2 */
  13. #ifdef SYS_5
  14. #define SYS_V
  15. #endif /* SYS_5 */
  16. /* FIXME: A lot of modern systems, including Linux, don't have struct sgtty
  17. * and associated ioctls. If you *do* have it, uncomment this. All this
  18. * code should probably be rewritten one day to use termios instead, which
  19. * seems to be the standard that won. --- dtrg */
  20. //#define WANT_SGTTY