From: Guido van Rossum Date: Thu, 20 Dec 1990 23:05:40 +0000 (+0000) Subject: Changed include of X-Git-Tag: v0.9.8~1093 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f22120ab74281d443dca2d25c9e6add5721b9b8a;p=thirdparty%2FPython%2Fcpython.git Changed include of --- diff --git a/Python/errors.c b/Python/errors.c index 7424b0cae1e6..7c66f65af27c 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -31,10 +31,13 @@ err_setval() has to be changed. */ -#include "errno.h" - #include "allobjects.h" +#include +#ifndef errno +extern int errno; +#endif + #include "errcode.h" extern char *strerror PROTO((int));