Don't try calling lsl when file is missing.
[splint-patched.git] / test / manual / macros.c
blob19aa149859a6794c0f171bf83e4dfa3fabb2a391
1 /*@notfunction@*/
2 # define NUMTYPES int /*@alt unsigned int, char, float, double@*/
3 extern NUMTYPES square (NUMTYPES x);
5 int f (int x, char c, float f, double d, char *s)
7 x = square (x);
8 c = square (c);
9 square (f);
10 square (d);
11 square (s);
13 return (square (d));