repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git]
/
workbench
/
classes
/
zune
/
betterstring
/
includes
/
mcc_debug.h
blob
2f3ed07a4d4f6b6554423024c93d0134c6fafc1c
1
/*
2
** debug functions header
3
*/
4
5
#ifndef MCC_DEBUG_H
6
#define MCC_DEBUG_H
7
8
#ifdef WITH_DEBUG
9
#define DEBUG 1
10
#else
11
#define DEBUG 0
12
#endif
13
14
#include <aros/debug.h>
15
16
#endif
/* MCC_DEBUG_H */
17