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 /* 8 * If we don't have strerror(), we fake it using sys_nerr and sys_errlist. 9 */ 10 #if ! defined(HAVE_STRERROR) 11 12 extern char *strerror(int errnum); 13 14 #endif 15