repo.or.cz
/
notion.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Released version 3-2015061300
[notion.git]
/
libtu
/
debug.h
blob
729222d55e4fc00fb5d686814eb59301e0e9ee30
1
/*
2
* libtu/debug.h
3
*
4
* Copyright (c) Tuomo Valkonen 2004.
5
*
6
* You may distribute and modify this library under the terms of either
7
* the Clarified Artistic License or the GNU LGPL, version 2.1 or later.
8
*/
9
10
#ifndef LIBTU_DEBUG_H
11
#define LIBTU_DEBUG_H
12
13
#ifdef CF_DEBUG
14
#define D(X) X
15
#else
16
#define D(X)
17
#endif
18
19
#endif
/* LIBTU_DEBUG_H */