]> andersk Git - splint.git/blame - test/manual/only.c
Fixes for win32
[splint.git] / test / manual / only.c
CommitLineData
77970e15 1extern /*@only@*/ int *glob;
2
3/*@only@*/ int *
4 f (/*@only@*/ int *x, int *y,
5 int *z)
6 /*@globals int *glob;@*/
7{
8 int *m = (int *)
9 malloc (sizeof (int));
10
11 glob = y;
12 free (x);
13 *m = *x;
14 return z;
15}
This page took 0.052262 seconds and 5 git commands to generate.