sysexits.h 472 B

12345678910111213141516171819202122
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: Mike Sperber, Ivan Shmakov
  5. */
  6. /*
  7. * If we don't have sysexits.h, we provide our own EX_... definitions.
  8. */
  9. #if defined(HAVE_SYSEXITS_H)
  10. #include <sysexits.h>
  11. #else
  12. /* These are values on most Unices. */
  13. #define EX_USAGE 64 /* command line usage error */
  14. /* SRFI 22 assumes the following value. */
  15. #define EX_SOFTWARE 70 /* internal software error */
  16. #endif