diff options
author | Guido van Rossum <guido@python.org> | 1998-12-18 22:02:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-18 22:02:37 (GMT) |
commit | 1924a0677d0eb3fbc46c6d0116024b6d642e790d (patch) | |
tree | b196c488cd8b692308ba70dc1154cf1f3fb6a850 | |
parent | eb452321afab12974850feb830031517d1946b4c (diff) | |
download | cpython-1924a0677d0eb3fbc46c6d0116024b6d642e790d.zip cpython-1924a0677d0eb3fbc46c6d0116024b6d642e790d.tar.gz cpython-1924a0677d0eb3fbc46c6d0116024b6d642e790d.tar.bz2 |
Chris H. writes:
If we're going to put the PyOS_strtol() proto in intobject.h we should
include it here or the symbol isn't exported on PowerPC.
-rw-r--r-- | Python/mystrtoul.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/mystrtoul.c b/Python/mystrtoul.c index cfe0074..b5ea751 100644 --- a/Python/mystrtoul.c +++ b/Python/mystrtoul.c @@ -29,7 +29,7 @@ PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ -#include "config.h" +#include "Python.h" #if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE) #define _SGI_MP_SOURCE |