]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added <errno.h>
authorGuido van Rossum <guido@python.org>
Thu, 20 Dec 1990 23:06:26 +0000 (23:06 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 20 Dec 1990 23:06:26 +0000 (23:06 +0000)
Objects/floatobject.c

index 82d464327d1541359dd11eb508c58bd91e61908e..4523e8359025948060f65f54da08844944d63478 100644 (file)
@@ -5,6 +5,11 @@
 
 #include "allobjects.h"
 
+#include <errno.h>
+#ifndef errno
+extern int errno;
+#endif
+
 #include <ctype.h>
 #include <math.h>