]> andersk Git - splint.git/blame - test/alttypes.c
noexpand always false.
[splint.git] / test / alttypes.c
CommitLineData
885824d3 1# include "bool.h"
2
3int /*@alt void@*/ f (void) ;
4
5int f (void)
6{
7 return 3;
8}
9
10int g (void)
11{
12 f ();
13
14 return 4;
15}
16
17int /*@alt void@*/ f2 (void) ;
18
19int /*@alt bool@*/ f2 (void)
20{
21 return 3;
22}
23
24extern int /*@alt char, bool@*/ x;
25int /*@alt char@*/ x;
This page took 0.062228 seconds and 5 git commands to generate.