strerror.h 277 B

123456789101112131415
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: Richard Kelsey, Jonathan Rees
  5. */
  6. /*
  7. * If we don't have strerror(), we fake it using sys_nerr and sys_errlist.
  8. */
  9. #if ! defined(HAVE_STRERROR)
  10. extern char *strerror(int errnum);
  11. #endif