1 /*
2  * Name mangling for public symbols is controlled by --with-mangling and
3  * --with-jemalloc-prefix.  With default settings the je_ prefix is stripped by
4  * these macro definitions.
5  */
6 #ifndef JEMALLOC_NO_RENAME
7 #  define je_malloc_conf je_malloc_conf
8 #  define je_malloc_message je_malloc_message
9 #  define je_malloc je_malloc
10 #  define je_calloc je_calloc
11 #  define je_posix_memalign je_posix_memalign
12 #  define je_aligned_alloc je_aligned_alloc
13 #  define je_realloc je_realloc
14 #  define je_free je_free
15 #  define je_mallocx je_mallocx
16 #  define je_rallocx je_rallocx
17 #  define je_xallocx je_xallocx
18 #  define je_sallocx je_sallocx
19 #  define je_dallocx je_dallocx
20 #  define je_sdallocx je_sdallocx
21 #  define je_nallocx je_nallocx
22 #  define je_mallctl je_mallctl
23 #  define je_mallctlnametomib je_mallctlnametomib
24 #  define je_mallctlbymib je_mallctlbymib
25 #  define je_malloc_stats_print je_malloc_stats_print
26 #  define je_malloc_usable_size je_malloc_usable_size
27 #  define je_memalign je_memalign
28 #  define je_valloc je_valloc
29 #endif
30