Various minor fixes for compiler/linter (other then splint itself) warnings.
[splint-patched.git] / src / Headers / strOrUnionNode.h
blobc8365dca162d69cedfa16b5a5f4ef77e89df50c5
1 /*
2 ** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
3 ** See ../LICENSE for license information.
4 */
6 typedef enum {SU_STRUCT, SU_UNION} suKind;
8 typedef struct {
9 suKind kind;
10 ltoken tok; /* also encodes if it's struct or union */
11 ltoken opttagid;
12 sort sort;
13 /*@owned@*/ stDeclNodeList structdecls;
14 } *strOrUnionNode;