Don't try calling lsl when file is missing.
[splint-patched.git] / test / manual / sumsquares.c
blob378c13cd08bd34c241a39f54dcaa7380db1e6c91
1 extern int square (/*@sef@*/ int x);
2 # define square(x) ((x) *(x))
4 extern int sumsquares (int x, int y);
5 # define sumsquares(x,y) (square(x) + square(y))
7 int f (int i)
9 return square (i++);