]> andersk Git - splint.git/blob - test/tests2.4/ulrich.c
Pushed back constraintResolve.c to the previous version.
[splint.git] / test / tests2.4 / ulrich.c
1 #include <stdlib.h>
2 # define x 23
3
4 void * utl_calloc
5 (
6     const size_t num,
7     const size_t size
8 )
9 {
10     void *newblock = NULL;
11
12     newblock = calloc(num, size);
13
14 #
15     return newblock;
16 }
17
This page took 0.033728 seconds and 5 git commands to generate.