Back out the previous change. It doesn't save any space on 64-bit
platforms.
This commit is contained in:
parent
73d66925d9
commit
e5de77800e
|
@ -8,11 +8,11 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct _node {
|
typedef struct _node {
|
||||||
|
short n_type;
|
||||||
char *n_str;
|
char *n_str;
|
||||||
struct _node *n_child;
|
|
||||||
int n_lineno;
|
int n_lineno;
|
||||||
int n_nchildren;
|
int n_nchildren;
|
||||||
short n_type;
|
struct _node *n_child;
|
||||||
} node;
|
} node;
|
||||||
|
|
||||||
PyAPI_FUNC(node *) PyNode_New(int type);
|
PyAPI_FUNC(node *) PyNode_New(int type);
|
||||||
|
|
Loading…
Reference in New Issue