summaryrefslogtreecommitdiff
path: root/umem_test3.c
blob: bcbb231d2091525f59f5f5f389f12d2d757905e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int
main (void)
{
  char *p;

  p = malloc(10);
  free(p);

  return EXIT_SUCCESS;
}