cpython/Python/strerror.c

25 lines
485 B
C
Raw Normal View History

1991-02-19 08:39:46 -04:00
/* PD implementation of strerror() for systems that don't have it.
1990-10-14 09:07:46 -03:00
Author: Guido van Rossum, CWI Amsterdam, Oct. 1990, <guido@cwi.nl>. */
#include <stdio.h>
2001-11-28 16:42:20 -04:00
#include "Python.h"
1990-10-14 09:07:46 -03:00
extern int sys_nerr;
extern char *sys_errlist[];
char *
strerror(int err)
1990-10-14 09:07:46 -03:00
{
static char buf[20];
if (err >= 0 && err < sys_nerr)
return sys_errlist[err];
2001-11-28 16:42:20 -04:00
PyOS_snprintf(buf, sizeof(buf), "Unknown errno %d", err);
1990-10-14 09:07:46 -03:00
return buf;
}
1994-08-30 05:27:36 -03:00
#ifdef macintosh
int sys_nerr = 0;
char *sys_errlist[1] = 0;
#endif