]> andersk Git - splint.git/blobdiff - src/Headers/programNode.h
Merged code tree with Dave Evans's version. Many changes to numberous to list....
[splint.git] / src / Headers / programNode.h
index 160c0591e5861126ed7fd67b7c8452142e6b7158..a859c30c2694d4ea045f7e5c5aeb40dd6d1c5c83 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-2001.
 ** See ../LICENSE for license information.
 **
 */
@@ -7,14 +7,14 @@ typedef enum
 {
   ACT_SELF, ACT_ITER, ACT_ALTERNATE, 
   ACT_SEQUENCE
-  } actionKind;
+} actionKind;
 
-typedef struct _programNode {
+typedef struct {
   int wrapped; /* number of balanced parentheses around this program node */
   actionKind kind;
   union {
-    struct _stmtNode *self;
-    struct _programNodeList *args;
+    stmtNode self;
+    programNodeList args;
   } content;
 } *programNode;
 
This page took 0.053975 seconds and 4 git commands to generate.