Minor
This commit is contained in:
parent
444fffb1ab
commit
1d52151a19
|
@ -31,7 +31,6 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* #define HB_DEBUG 1 */
|
|
||||||
#ifndef HB_DEBUG
|
#ifndef HB_DEBUG
|
||||||
#define HB_DEBUG 0
|
#define HB_DEBUG 0
|
||||||
#endif
|
#endif
|
||||||
|
@ -39,10 +38,13 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#if HB_DEBUG
|
|
||||||
|
/* We only use these two for debug output. However, the debug code is
|
||||||
|
* always seen by the compiler (and optimized out in non-debug builds.
|
||||||
|
* If including these becomes a problem, we can start thinking about
|
||||||
|
* someway around that. */
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "hb-common.h"
|
#include "hb-common.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue