Reorder macros.

This commit is contained in:
Jason Evans 2012-03-01 17:53:16 -08:00
parent 0a5489e37d
commit 62320b8551
2 changed files with 6 additions and 6 deletions

View File

@ -88,10 +88,10 @@ int je_nallocm(size_t *rsize, size_t size, int flags);
#define memalign je_memalign #define memalign je_memalign
#define valloc je_valloc #define valloc je_valloc
#define allocm je_allocm #define allocm je_allocm
#define dallocm je_dallocm
#define nallocm je_nallocm
#define rallocm je_rallocm #define rallocm je_rallocm
#define sallocm je_sallocm #define sallocm je_sallocm
#define dallocm je_dallocm
#define nallocm je_nallocm
#endif #endif
/* /*
@ -117,10 +117,10 @@ int je_nallocm(size_t *rsize, size_t size, int flags);
#undef je_memalign #undef je_memalign
#undef je_valloc #undef je_valloc
#undef je_allocm #undef je_allocm
#undef je_dallocm
#undef je_nallocm
#undef je_rallocm #undef je_rallocm
#undef je_sallocm #undef je_sallocm
#undef je_dallocm
#undef je_nallocm
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus

View File

@ -26,10 +26,10 @@
#undef je_memalign #undef je_memalign
#undef je_valloc #undef je_valloc
#undef je_allocm #undef je_allocm
#undef je_dallocm
#undef je_nallocm
#undef je_rallocm #undef je_rallocm
#undef je_sallocm #undef je_sallocm
#undef je_dallocm
#undef je_nallocm
/* /*
* JEMALLOC_PRIVATE_NAMESPACE is used as a prefix for all library-private APIs. * JEMALLOC_PRIVATE_NAMESPACE is used as a prefix for all library-private APIs.