]> andersk Git - splint.git/blame_incremental - test/simplebufferConstraintTests/m.c
Fixes for win32
[splint.git] / test / simplebufferConstraintTests / m.c
... / ...
CommitLineData
1extern /*@null@*/ /*@out@*/ /*@only@*/ void *mymalloc (size_t size) /*@*/
2 /*@ensures MaxSet(result) == (size - 1) @*/ ;
3
4void t()
5{
6char *f;
7
8f = mymalloc (3);
9f[2] = '2';
10free (f);
11}
This page took 0.084692 seconds and 5 git commands to generate.