Commit 3e7d358b authored by Guido van Rossum's avatar Guido van Rossum

Oops. I killed a bit too much and not enough when I deleted intobject.c.

parent 8e5d8152
...@@ -296,7 +296,6 @@ OBJECT_OBJS= \ ...@@ -296,7 +296,6 @@ OBJECT_OBJS= \
Objects/floatobject.o \ Objects/floatobject.o \
Objects/frameobject.o \ Objects/frameobject.o \
Objects/funcobject.o \ Objects/funcobject.o \
Objects/intobject.o \
Objects/iterobject.o \ Objects/iterobject.o \
Objects/listobject.o \ Objects/listobject.o \
Objects/longobject.o \ Objects/longobject.o \
......
...@@ -7,6 +7,12 @@ ...@@ -7,6 +7,12 @@
#include <ctype.h> #include <ctype.h>
long
PyInt_GetMax(void)
{
return LONG_MAX; /* To initialize sys.maxint */
}
#ifndef NSMALLPOSINTS #ifndef NSMALLPOSINTS
#define NSMALLPOSINTS 257 #define NSMALLPOSINTS 257
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment