diff options
Diffstat (limited to 'src/malloc/free.c')
-rw-r--r-- | src/malloc/free.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/malloc/free.c b/src/malloc/free.c index 3944f7b2..6013ea97 100644 --- a/src/malloc/free.c +++ b/src/malloc/free.c @@ -4,3 +4,11 @@ void free(void *p) { __libc_free(p); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |