]> andersk Git - splint.git/blame - test/csyntax2.c
noexpand always false.
[splint.git] / test / csyntax2.c
CommitLineData
885824d3 1typedef int mapping;
2typedef int mappair;
3
4int smalloc();
5
6mapping *
7mapping_create (void)
8{
9 mapping **t;
10 int x;
11
12 t = (mapping **) smalloc (sizeof (mapping *));
13 x = sizeof(t);
14 x = sizeof *t;
15 return *t;
16}
17
This page took 0.534164 seconds and 5 git commands to generate.