diff options
Diffstat (limited to 'include/memory.h')
-rw-r--r-- | include/memory.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/memory.h b/include/memory.h index 6a9ed84df..bf4e66b2a 100644 --- a/include/memory.h +++ b/include/memory.h @@ -61,9 +61,20 @@ char *m_strdup( const char * a); size_t m_size( const void *a ); int m_is_secure( const void *p ); +/*-- secmem.c --*/ +void secmem_init( size_t npool ); +void secmem_term( void ); +void *secmem_malloc( size_t size ); +void secmem_free( void *a ); +void secmem_dump_stats(void); + + + #define DBG_MEMORY memory_debug_mode #define DBG_MEMSTAT memory_stat_debug_mode int memory_debug_mode; int memory_stat_debug_mode; + + #endif /*G10_MEMORY_H*/ |