Don't try calling lsl when file is missing.
[splint-patched.git] / test / clauses2.c
blob92c80f829fd8220a6b68b901f5d5fa63b016e194
1 extern /*@only@*/ int *new_ip (void);
3 /*@only@*/ int *f(void)
5 int *x = new_ip ();
6 int *y;
8 if (3 > 4)
10 y = x;
12 else
14 free (x);
15 y = new_ip ();
18 return y;