diff options
author | Guido van Rossum <guido@python.org> | 1990-12-20 23:06:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-12-20 23:06:26 (GMT) |
commit | c211ee4b1398dc93185585607ed787397c4d44e9 (patch) | |
tree | 388cf9f0c9107fe31c2a5016c2ff1f399b4beb00 /Objects/floatobject.c | |
parent | f22120ab74281d443dca2d25c9e6add5721b9b8a (diff) | |
download | cpython-c211ee4b1398dc93185585607ed787397c4d44e9.zip cpython-c211ee4b1398dc93185585607ed787397c4d44e9.tar.gz cpython-c211ee4b1398dc93185585607ed787397c4d44e9.tar.bz2 |
Added <errno.h>
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r-- | Objects/floatobject.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 82d4643..4523e83 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -5,6 +5,11 @@ #include "allobjects.h" +#include <errno.h> +#ifndef errno +extern int errno; +#endif + #include <ctype.h> #include <math.h> |