Don't try calling lsl when file is missing.
[splint-patched.git] / test / enuminitredeftype.c
blob4a8321cc0a920673ec6c8d101577567dc8f3d8b7
1 /* redefinition of datatype by enum field */
3 typedef struct {
4 int i;
5 } t;
7 enum e {
8 s = 0,
12 /* redefinition of datatype by enum field inside function */
14 typedef struct {
15 char f_c;
16 unsigned int f_ui;
17 } f_t;
19 bool
20 f(int f_i)
22 enum f_e {
23 f_s = 0,
24 f_t,
25 f_x
28 return f_i/2 == f_x;