]> andersk Git - splint.git/blob - test/csyntax2.c
Pushed back constraintResolve.c to the previous version.
[splint.git] / test / csyntax2.c
1 typedef int mapping;
2 typedef int mappair;
3
4 int smalloc();
5
6 mapping *
7 mapping_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.099297 seconds and 5 git commands to generate.