Staging
v0.5.1
https://github.com/python/cpython
Revision 2106a4d63673d33f5a8196b748f5728d1a89f16c authored by Barry Warsaw on 22 March 2002, 16:25:54 UTC, committed by Barry Warsaw on 22 March 2002, 16:25:54 UTC
Also, added a header for 2.2.1c2 (if there isn't a c2, change this to
2.2.1 final).
1 parent 5516c7b
Raw File
Tip revision: 2106a4d63673d33f5a8196b748f5728d1a89f16c authored by Barry Warsaw on 22 March 2002, 16:25:54 UTC
Added a NEWS item for the fix of SF bug #531966 in the email package.
Tip revision: 2106a4d
strerror.c

/* PD implementation of strerror() for systems that don't have it.
   Author: Guido van Rossum, CWI Amsterdam, Oct. 1990, <guido@cwi.nl>. */

#include <stdio.h>
#include "Python.h"

extern int sys_nerr;
extern char *sys_errlist[];

char *
strerror(int err)
{
	static char buf[20];
	if (err >= 0 && err < sys_nerr)
		return sys_errlist[err];
	PyOS_snprintf(buf, sizeof(buf), "Unknown errno %d", err);
	return buf;
}

#ifdef macintosh
int sys_nerr = 0;
char *sys_errlist[1] = 0;
#endif
back to top