]> andersk Git - splint.git/blame - test/manual/macros.c
Pushed back constraintResolve.c to the previous version.
[splint.git] / test / manual / macros.c
CommitLineData
77970e15 1/*@notfunction@*/
2# define NUMTYPES int /*@alt unsigned int, char, float, double@*/
3extern NUMTYPES square (NUMTYPES x);
4
5int f (int x, char c, float f, double d, char *s)
6{
7 x = square (x);
8 c = square (c);
9 square (f);
10 square (d);
11 square (s);
12
13 return (square (d));
14}
This page took 0.058517 seconds and 5 git commands to generate.