summaryrefslogtreecommitdiff
path: root/c/malloc_closure.h
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2012-06-16 08:12:45 +0200
committerArmin Rigo <arigo@tunes.org>2012-06-16 08:12:45 +0200
commitd4f7b8474202a2e469a1ac60a976dfc6c06d1f18 (patch)
treeaa114b68ac0d76135271b6ff3af908666dee9125 /c/malloc_closure.h
parent6d74e7acb55f4b240760229371e3255df0e99c0d (diff)
downloadcffi-d4f7b8474202a2e469a1ac60a976dfc6c06d1f18.tar.gz
Uh, ffi_closure_alloc() and ffi_closure_free() are already defined
in recent versions of <ffi.h>, but of course not all of them. Rename.
Diffstat (limited to 'c/malloc_closure.h')
-rw-r--r--c/malloc_closure.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/malloc_closure.h b/c/malloc_closure.h
index e03a452..82527b0 100644
--- a/c/malloc_closure.h
+++ b/c/malloc_closure.h
@@ -102,7 +102,7 @@ static void more_core(void)
/******************************************************************/
/* put the item back into the free list */
-static void ffi_closure_free(ffi_closure *p)
+static void cffi_closure_free(ffi_closure *p)
{
union mmaped_block *item = (union mmaped_block *)p;
item->next = free_list;
@@ -110,7 +110,7 @@ static void ffi_closure_free(ffi_closure *p)
}
/* return one item from the free list, allocating more if needed */
-static ffi_closure *ffi_closure_alloc(void)
+static ffi_closure *cffi_closure_alloc(void)
{
union mmaped_block *item;
if (!free_list)