repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BPicture: Fix archive constructor.
[haiku.git]
/
src
/
add-ons
/
kernel
/
drivers
/
network
/
wb840
/
debug.h
blob
ba81f2812e88028376cfacf0adf6696845e1bf0a
1
#ifndef __MYDEBUG_H
2
#define __MYDEBUG_H
3
4
#define ARGS (const char*, ...)
5
6
#ifdef DEBUG
7
#define LOG(ARGS) dprintf ARGS
8
#else
9
#define LOG(ARGS)
10
#endif
// DEBUG
11
12
#endif
//__MYDEBUG_H