diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/malloc/free.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc/free.c b/src/malloc/free.c index f17a952c..3944f7b2 100644 --- a/src/malloc/free.c +++ b/src/malloc/free.c @@ -2,5 +2,5 @@ void free(void *p) { - return __libc_free(p); + __libc_free(p); } |