Don't try calling lsl when file is missing.
[splint-patched.git] / test / csyntax2.c
blobcbc1925d4f0386c5bb9101ff1c5eb86a93e968b6
1 typedef int mapping;
2 typedef int mappair;
4 int smalloc();
6 mapping *
7 mapping_create (void)
9 mapping **t;
10 int x;
12 t = (mapping **) smalloc (sizeof (mapping *));
13 x = sizeof(t);
14 x = sizeof *t;
15 return *t;