scsh-0.6/c/fake/strerror.h

9 lines
155 B
C
Raw Normal View History

1999-09-14 08:45:02 -04:00
/*
* If we don't have strerror(), we fake it using sys_nerr and sys_errlist.
*/
#if ! defined(HAVE_STRERROR)
extern char *strerror(int errnum);
#endif