/* $Header: /home/vikas/src/nocol/lib/RCS/strerror.c,v 1.1 1997/02/18 12:49:29 vikas Exp $ */ /* * Simple function in case not in the library. * * -vikas@navya.com */ #include char *strerror(n) int n; { #if !defined(__FreeBSD__) && !defined(__BSDI__) extern char *sys_errlist[]; #endif return (char *)sys_errlist[n]; }