Don't try calling lsl when file is missing.
[splint-patched.git] / test / manual / stack.c
blob06405dc97f828f7e775354b387e2309cbe78fffb
1 int *glob;
3 /*@dependent@*/
4 int *f (int **x)
6 int sa[2] = { 0, 1 };
7 int loc = 3;
9 glob = &loc;
10 *x = &sa[0];
12 return &loc;