Some consistency changes to library & headers flags.
[splint-patched.git] / test / metastate / nullbranch2.c
blob75b2e2fcc4054c563e3953391c10b9467fb910a2
1 void ftest (char *fname)
3 char *s;
5 s = malloc (sizeof (*s) * 20);
7 if (s == NULL)
11 else
13 *s = '4';
14 free (s);