diff options
Diffstat (limited to 'src/common/memarea.c')
-rw-r--r-- | src/common/memarea.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/memarea.c b/src/common/memarea.c index 4257c4552c..5c565cebe7 100644 --- a/src/common/memarea.c +++ b/src/common/memarea.c @@ -26,7 +26,7 @@ #error "void* is neither 4 nor 8 bytes long. I don't know how to align stuff." #endif -/* Increment <b>ptr</b> until it is aligned to MEMAREA_ALIGN. */ +/** Increment <b>ptr</b> until it is aligned to MEMAREA_ALIGN. */ static INLINE void * realign_pointer(void *ptr) { @@ -85,6 +85,7 @@ alloc_chunk(size_t sz, int freelist_ok) } } +/* DOCDOC chunk_free */ static void chunk_free(memarea_chunk_t *chunk) { |