diff options
Diffstat (limited to 'Objects')
-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> |