Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git] / tests / mallocTest5.c
bloba94853c75b3830200a836c8dc77b03289b530ffa
1 #include <stdio.h>
2 #include <stdlib.h>
4 int main(int argc, char *argv[]) {
5 int i;
6 for(i = 0; i < 5; i ++) {
7 char *block = malloc(sizeof(char) * 1024);
8 printf("---- mallocTest: block address: %p\n", block);
9 free(block);
11 return 0;