]> andersk Git - splint.git/blame - test/temp/pmalloc.c
*** empty log message ***
[splint.git] / test / temp / pmalloc.c
CommitLineData
80ee600a 1#include <stdlib.h>
2
3void
4foo()
5{
6 char *p;
7
8 if ((p = malloc(100)) == NULL)
9 printf("out of memory\n");
10 else
11 free (p);
12}
This page took 0.083798 seconds and 5 git commands to generate.