blob: 19376c04315114277a5a985368dee94b58f1e95a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* To be included after all other includes.
*/
#ifndef H_DEBUG
#define H_DEBUG
#include <assert.h>
#ifdef DMALLOC
#include <dmalloc.h>
#endif
#endif /* H_DEBUG */
|