aboutsummaryrefslogtreecommitdiff
path: root/libc/mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/mem.c')
-rw-r--r--libc/mem.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/libc/mem.c b/libc/mem.c
index f9eaa3a..50b8cab 100644
--- a/libc/mem.c
+++ b/libc/mem.c
@@ -364,6 +364,11 @@ void _free(void *ptr)
void *malloc_debug(u32 size, const char *file, int line, const char *func, const char *inp)
{
void *ret = _malloc(size);
+
+ (void)file;
+ (void)line;
+ (void)func;
+ (void)inp;
/* #ifdef kernel */
/* printf("K"); */
/* #else */
@@ -375,12 +380,17 @@ void *malloc_debug(u32 size, const char *file, int line, const char *func, const
void free_debug(void *ptr, const char *file, int line, const char *func, const char *inp)
{
+ if (ptr)
+ _free(ptr);
+
+ (void)file;
+ (void)line;
+ (void)func;
+ (void)inp;
/* #ifdef kernel */
/* printf("K"); */
/* #else */
/* printf("U"); */
/* #endif */
/* printf("FREE\t%s:%d: %s: 0x%x (%s)\n", file, line, func, ptr, inp); */
- if (ptr)
- _free(ptr);
}