diff options
Diffstat (limited to 'dbmalloc.h')
-rw-r--r-- | dbmalloc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ #ifndef DBMALLOC_H_ #define DBMALLOC_H_ -#include "stdint.h" -#include "stdlib.h" #include "options.h" +#include <stdint.h> +#include <stdlib.h> void * m_malloc(size_t size); void * m_calloc(size_t nmemb, size_t size); |