mirror of
https://github.com/python/cpython.git
synced 2024-11-24 17:47:13 +01:00
19 lines
390 B
C
19 lines
390 B
C
/* PD implementation of strerror() for BSD derivatives that don't have it.
|
|
Author: Guido van Rossum, CWI Amsterdam, Oct. 1990, <guido@cwi.nl>. */
|
|
|
|
#include <stdio.h>
|
|
|
|
extern int sys_nerr;
|
|
extern char *sys_errlist[];
|
|
|
|
char *
|
|
strerror(err)
|
|
int err;
|
|
{
|
|
static char buf[20];
|
|
if (err >= 0 && err < sys_nerr)
|
|
return sys_errlist[err];
|
|
sprintf(buf, "Unknown errno %d", err);
|
|
return buf;
|
|
}
|