]> andersk Git - splint.git/blame - test/mut.c
Update configure and makefile to aclocal/automake 1.10.1 and autoconf 2.61.
[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.082094 seconds and 5 git commands to generate.