]> andersk Git - splint.git/blame - test/tclauses/globals.c
Added additional files to the distribution tar ball.
[splint.git] / test / tclauses / globals.c
CommitLineData
80ee600a 1extern int glob;
2
3/*@function int fg(void) globals glob;@*/
4# define fg() (glob + 1)
5
6/*@function int fm(void) globals glob; modifies glob;@*/
7# define fm() (glob++)
8
9int f (void) /*@globals undef glob@*/ ;
10
11int f (void) /*@globals undef glob@*/
12{
13 return glob;
14}
15# if 0
16int f2 (void) /*@globals int glob;@*/
17{
18 return glob;
19}
20# endif
This page took 0.091557 seconds and 5 git commands to generate.