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