From e5de77800e905a4bc90f7568eb106aa9e276b590 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 17 Sep 2002 03:27:02 +0000 Subject: Back out the previous change. It doesn't save any space on 64-bit platforms. --- Include/node.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/node.h b/Include/node.h index c909ec5..8f5ef23 100644 --- a/Include/node.h +++ b/Include/node.h @@ -8,11 +8,11 @@ extern "C" { #endif typedef struct _node { + short n_type; char *n_str; - struct _node *n_child; int n_lineno; int n_nchildren; - short n_type; + struct _node *n_child; } node; PyAPI_FUNC(node *) PyNode_New(int type); -- cgit v0.12