sysexits.c 277 B

1234567891011121314
  1. /* Part of Scheme 48 1.9. See file COPYING for notices and license.
  2. *
  3. * Authors: Mike Sperber
  4. */
  5. #include "scheme48.h"
  6. void
  7. s48_init_sysexits(void)
  8. {
  9. /* For SRFI 22, probably useless on Windows */
  10. s48_define_exported_binding("EX_SOFTWARE", s48_enter_integer(70L));
  11. }