]> andersk Git - splint.git/blame - test/mut.c
noexpand always false.
[splint.git] / test / mut.c
CommitLineData
885824d3 1# include "mut.h"
2
3void mut_mod (mut a)
4{
5 *a = 3;
6}
7
8mut mut_create (void)
9{
10 int *x = (int *) malloc(sizeof(int));
11
12 if (x == NULL)
13 {
14 exit (EXIT_FAILURE);
15 }
16 *x = 3;
17 return x;
18}
This page took 0.801802 seconds and 5 git commands to generate.