]> andersk Git - splint.git/blame - test/tests2.2/struct.c
Fixed manual csvoverwrite.
[splint.git] / test / tests2.2 / struct.c
CommitLineData
885824d3 1extern double read_double (void);
2
3typedef struct
4{
5 float a;
6} some_type;
7
8typedef struct
9{
10 double a;
11} another_type;
12
13void main (void)
14{
15 another_type f;
16 double x;
17
18 x = read_double ();
19 f.a = read_double ();
20}
This page took 0.067247 seconds and 5 git commands to generate.