Various minor fixes for compiler/linter (other then splint itself) warnings.
[splint-patched.git] / test / alttypes.c
blob20708e361d71abf201b806ed456eda1b017b40d5
1 # include "bool.h"
3 int /*@alt void@*/ f (void) ;
5 int f (void)
7 return 3;
10 int g (void)
12 f ();
14 return 4;
17 int /*@alt void@*/ f2 (void) ;
19 int /*@alt bool@*/ f2 (void)
21 return 3;
24 extern int /*@alt char, bool@*/ x;
25 int /*@alt char@*/ x;