fix build error

This commit is contained in:
daanx 2024-12-11 14:30:44 -08:00
parent ab53a73cbd
commit 1c8d15abac
2 changed files with 14 additions and 14 deletions

View file

@ -239,20 +239,6 @@ bool _mi_page_is_valid(mi_page_t* page);
#endif #endif
// ------------------------------------------------------
// Debug
// ------------------------------------------------------
#if !defined(MI_DEBUG_UNINIT)
#define MI_DEBUG_UNINIT (0xD0)
#endif
#if !defined(MI_DEBUG_FREED)
#define MI_DEBUG_FREED (0xDF)
#endif
#if !defined(MI_DEBUG_PADDING)
#define MI_DEBUG_PADDING (0xDE)
#endif
/* ----------------------------------------------------------- /* -----------------------------------------------------------
Assertions Assertions
----------------------------------------------------------- */ ----------------------------------------------------------- */

View file

@ -562,5 +562,19 @@ struct mi_tld_s {
#define EOVERFLOW (75) #define EOVERFLOW (75)
#endif #endif
// ------------------------------------------------------
// Debug
// ------------------------------------------------------
#ifndef MI_DEBUG_UNINIT
#define MI_DEBUG_UNINIT (0xD0)
#endif
#ifndef MI_DEBUG_FREED
#define MI_DEBUG_FREED (0xDF)
#endif
#ifndef MI_DEBUG_PADDING
#define MI_DEBUG_PADDING (0xDE)
#endif
#endif // MI_TYPES_H #endif // MI_TYPES_H