Added getmaxint() so sys can initialize sys.maxint.

Added Makefile.in.
This commit is contained in:
Guido van Rossum 1993-12-24 10:22:45 +00:00
parent 92fa23fd6d
commit 2e1d433e43
2 changed files with 17 additions and 9 deletions

View file

@ -47,6 +47,12 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define LONG_BIT (CHAR_BIT * sizeof(long))
#endif
long
getmaxint()
{
return LONG_MAX; /* To initialize sys.maxint */
}
/* Standard Booleans */
intobject FalseObject = {