diff options
Diffstat (limited to 'libc/stdlib/malloc')
-rw-r--r-- | libc/stdlib/malloc/heap_debug.c | 2 | ||||
-rw-r--r-- | libc/stdlib/malloc/malloc_debug.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libc/stdlib/malloc/heap_debug.c b/libc/stdlib/malloc/heap_debug.c index c1a127317..4804ba9ee 100644 --- a/libc/stdlib/malloc/heap_debug.c +++ b/libc/stdlib/malloc/heap_debug.c @@ -11,6 +11,8 @@ * Written by Miles Bader <miles@gnu.org> */ +#define vfprintf __vfprintf + #include <stdlib.h> #include <stdio.h> #include <stdarg.h> diff --git a/libc/stdlib/malloc/malloc_debug.c b/libc/stdlib/malloc/malloc_debug.c index b8f404621..e8711ff77 100644 --- a/libc/stdlib/malloc/malloc_debug.c +++ b/libc/stdlib/malloc/malloc_debug.c @@ -12,6 +12,7 @@ */ #define atoi __atoi +#define vfprintf __vfprintf #include <stdlib.h> #include <stdio.h> |