]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Include/node.h: make some fields short to save space during
authorGuido van Rossum <guido@python.org>
Tue, 23 Aug 1994 13:37:43 +0000 (13:37 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 23 Aug 1994 13:37:43 +0000 (13:37 +0000)
parsing

Include/node.h

index 24019a6eca33757f6f5d5f13942515b427a6b6bf..a2a2212b4b7d394b428b22bfc362a417c4ca7c5a 100644 (file)
@@ -31,10 +31,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 /* Parse tree node interface */
 
 typedef struct _node {
-       int             n_type;
+       short           n_type;
        char            *n_str;
-       int             n_lineno;
-       int             n_nchildren;
+       short           n_lineno;
+       short           n_nchildren;
        struct _node    *n_child;
 } node;