Staging
v0.5.1
https://github.com/python/cpython
Revision b606e3dbf93116c91c85fde7d9547361546e56cb authored by Barry Warsaw on 14 October 2002, 18:03:04 UTC, committed by Barry Warsaw on 14 October 2002, 18:03:04 UTC
There's no limit command near as I can tell.  Should be the bash
builtin ulimit command.
1 parent 31eac4e
Raw File
Tip revision: b606e3dbf93116c91c85fde7d9547361546e56cb authored by Barry Warsaw on 14 October 2002, 18:03:04 UTC
There was a typo in the MacOSX section regarding the stacksize issue.
Tip revision: b606e3d
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