0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Python/strerror.c

25 lines
485 B
C
Raw Normal View History

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