Skip to content

Commit

Permalink
Back out the previous change. It doesn't save any space on 64-bit
Browse files Browse the repository at this point in the history
platforms.
  • Loading branch information
gvanrossum committed Sep 17, 2002
1 parent 73d6692 commit e5de778
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Include/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e5de778

Please sign in to comment.