diff options
author | Miles Bader <miles@lsi.nec.co.jp> | 2002-07-30 09:22:51 +0000 |
---|---|---|
committer | Miles Bader <miles@lsi.nec.co.jp> | 2002-07-30 09:22:51 +0000 |
commit | a3483a6eb0bdf7110add4bcb7f4eb6cbd49d0608 (patch) | |
tree | eb0e84b1fb3309877a695efc2ad30b8d2b7dcbba /libc/stdlib/malloc/free.c | |
parent | ae96781efd37c63dda16175258480d9ad5919418 (diff) |
Use new malloc header macros.
Diffstat (limited to 'libc/stdlib/malloc/free.c')
-rw-r--r-- | libc/stdlib/malloc/free.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/malloc/free.c b/libc/stdlib/malloc/free.c index 6de5237dc..657604124 100644 --- a/libc/stdlib/malloc/free.c +++ b/libc/stdlib/malloc/free.c @@ -28,8 +28,8 @@ free (void *mem) struct heap_free_area *fa; struct heap *heap = &__malloc_heap; - mem -= MALLOC_ALIGNMENT; - size = *(size_t *)mem; + size = MALLOC_SIZE (mem); + mem = MALLOC_BASE (mem); MALLOC_DEBUG ("free: 0x%lx (base = 0x%lx, total_size = %d)\n", (long)mem + MALLOC_ALIGNMENT, (long)mem, size); |