sysidf.h 383 B

1234567891011121314151617181920212223
  1. /*
  2. Provisional arrangement for determining the system on which
  3. the program is being translated.
  4. */
  5. /* $Header$ */
  6. #undef BSD4_1 /* Berkeley Software Distr. 4.1 */
  7. #define BSD4_2 /* Berkeley Software Distr. 4.2 */
  8. #undef SYS_V0 /* System V0 */
  9. #ifdef BSD4_1
  10. #define BSD_X
  11. #endif BSD4_1
  12. #ifdef BSD4_2
  13. #define BSD_X
  14. #endif BSD4_2
  15. #ifdef SYS_V0
  16. #define SYS_V
  17. #endif SYS_V0