libumem/umem_test.c
Wez Furlong 855e068963 make the build experience nicer outside of ecelerity.
Add a simple test app.
Note: we don't compile the malloc replacement component.
2006-03-11 18:57:05 +00:00

19 lines
249 B
C

#include "umem.h"
int main(int argc, char *argv[])
{
char *foo;
umem_startup(NULL, 0, 0, NULL, NULL);
foo = umem_alloc(32, UMEM_DEFAULT);
strcpy(foo, "hello there");
printf("Hello %s\n", foo);
umem_free(foo, 32);
return 0;
}