diff options
author | Miles Bader <miles@lsi.nec.co.jp> | 2002-07-24 06:07:17 +0000 |
---|---|---|
committer | Miles Bader <miles@lsi.nec.co.jp> | 2002-07-24 06:07:17 +0000 |
commit | a4214b24913dbe9050e540ddd97376f2f79ceb63 (patch) | |
tree | 3bafd61759218a5cd56c55dd6db7d2503b7f287c /libc/stdlib/malloc/free.c | |
parent | 1c53466dd39e2b513f6a1fee9f7e42736905d443 (diff) |
Misc small cleanups.
Diffstat (limited to 'libc/stdlib/malloc/free.c')
-rw-r--r-- | libc/stdlib/malloc/free.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdlib/malloc/free.c b/libc/stdlib/malloc/free.c index 41deed737..4aa21cb84 100644 --- a/libc/stdlib/malloc/free.c +++ b/libc/stdlib/malloc/free.c @@ -106,7 +106,8 @@ unmap_free_area (struct heap *heap, struct heap_free_area *fa) } -void free (void *mem) +void +free (void *mem) { if (mem) { |