Don't try calling lsl when file is missing.
[splint-patched.git] / test / returned.c
blob0f90ef424f047574a231744f688ab29a145e4959
1 extern char *returnme (/*@returned@*/ char *s);
3 /*@only@*/ char *f (void)
5 char *s = (char *) malloc (sizeof (char));
6 *s = 'a';
8 if (3 > 4)
10 return s;
12 else
14 return returnme (s);