]> andersk Git - splint.git/blame_incremental - src/Headers/typeNode.h
Fixed declarations of inptr_t and uintptr_t.
[splint.git] / src / Headers / typeNode.h
... / ...
CommitLineData
1/*
2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
3** See ../LICENSE for license information.
4*/
5
6# ifndef TYPENODE_H
7# define TYPENODE_H
8
9typedef struct {
10 typeKind kind;
11 union {
12 abstractNode abstract;
13 exposedNode exposed;
14 taggedUnionNode taggedunion;
15 } content;
16} *typeNode;
17
18extern /*@unused@*/ /*@only@*/ cstring
19 typeNode_unparse (/*@null@*/ typeNode p_t) /*@*/ ;
20
21# else
22# error "Multiple include"
23# endif
This page took 0.158203 seconds and 5 git commands to generate.