Move down the INT_MAX logic, because HAVE_LIMITS_H was always undefined

and this breaks the AIX build with an INT_MAX redefinition error.
"config.h" is included in pgenheaders.h, so moving this down fixes the
problem.
This commit is contained in:
Vladimir Marangozov 2000-09-03 23:47:08 +00:00
parent 1d62f492b0
commit 58e64a82ee
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,10 @@
/* Parse tree node implementation */
#include "pgenheaders.h"
#include "node.h"
#include "errcode.h"
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
@ -6,12 +12,6 @@
#define INT_MAX 2147483647
#endif
/* Parse tree node implementation */
#include "pgenheaders.h"
#include "node.h"
#include "errcode.h"
node *
PyNode_New(int type)
{