]> andersk Git - splint.git/blobdiff - src/Headers/opFormNode.h
Fixed problem with NULL being changed.
[splint.git] / src / Headers / opFormNode.h
index b83c9ad64d43161c6c9e0048d712146d0b2022ae..81b2c28350c6cc4dca7bf7bcd9c8e0d9ab307c93 100644 (file)
@@ -1,5 +1,5 @@
 /*
-** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2000.
+** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
 ** See ../LICENSE for license information.
 **
 */
@@ -11,7 +11,7 @@ typedef enum {
   OPF_BMIDDLEM, OPF_BMMIDDLEM, 
   OPF_SELECT, OPF_MAP, 
   OPF_MSELECT, OPF_MMAP
-  } opFormKind;
+} opFormKind;
 
 typedef union {
   int middle;
@@ -19,13 +19,13 @@ typedef union {
   ltoken id;
 } opFormUnion;
 
-typedef struct _opFormNode {
+struct s_opFormNode {
   ltoken tok;        /* keeps the openSym token */
   opFormKind kind;
   opFormUnion content;
-  unsigned int key;
+  unsigned long int key;
   ltoken close;      /* keeps the closeSym token */
-} *opFormNode;
+} ;
 
 extern /*@unused@*/ /*@only@*/ cstring 
   opFormNode_unparse (/*@null@*/ opFormNode p_n) /*@*/ ;
This page took 0.054792 seconds and 4 git commands to generate.