diff options
Diffstat (limited to 'enmalloc.c')
-rw-r--r-- | enmalloc.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include "libsimple.h" +#ifndef TEST extern char *argv0; @@ -15,3 +16,15 @@ libsimple_enmalloc(int status, size_t n) /* TODO test */ } return ret; } + + +#else +#include "test.h" + +int +main(void) +{ + return 0; +} + +#endif |