opnsense-src/gnu/libexec/uucp/libunix/strerr.c

25 lines
360 B
C
Raw Normal View History

1993-08-05 14:28:27 -04:00
/* strerr.c
Return a string for a Unix errno value. */
#include "uucp.h"
#include <errno.h>
#ifndef sys_nerr
extern int sys_nerr;
#endif
#ifndef sys_errlist
extern char *sys_errlist[];
#endif
1994-05-07 14:14:43 -04:00
#undef strerror
1993-08-05 14:28:27 -04:00
char *
strerror (ierr)
int ierr;
{
if (ierr >= 0 && ierr < sys_nerr)
return sys_errlist[ierr];
return (char *) "unknown error";
}