Staging
v0.5.1
https://github.com/python/cpython
Revision 8e2470930f8401b40ce46e056727ef901487db50 authored by Anthony Baxter on 05 December 2001, 06:13:38 UTC, committed by Anthony Baxter on 05 December 2001, 06:13:38 UTC
Amazing.  This would open the sound file in text mode.  Fixed.
SF bug  #446219.
1 parent 138f443
Raw File
Tip revision: 8e2470930f8401b40ce46e056727ef901487db50 authored by Anthony Baxter on 05 December 2001, 06:13:38 UTC
backport 1.7:
Tip revision: 8e24709
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>

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];
	sprintf(buf, "Unknown errno %d", err);
	return buf;
}

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