From: Guido van Rossum Date: Tue, 4 Jun 1991 20:23:28 +0000 (+0000) Subject: Declare errno, for prehistoric systems. X-Git-Tag: v0.9.8~911 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=065d71e271d753625e91cf2a7cd471ace5617928;p=thirdparty%2FPython%2Fcpython.git Declare errno, for prehistoric systems. --- diff --git a/Python/marshal.c b/Python/marshal.c index b3986a80a6cd..94e6d3a76204 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -33,6 +33,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "marshal.h" #include +extern int errno; #define TYPE_NULL '0' #define TYPE_NONE 'N'