summaryrefslogtreecommitdiffstats
path: root/loader/debug.h
blob: f9d0e6b9c4ad680d2ea38091f7fa3555cbc9871d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef DEBUG_H
#define DEBUG_H

#ifdef DEBUG
#define TRACE printf
#define dbg_printf printf
#else
#define TRACE(...)
#define dbg_printf(...)
#endif

#endif /* DEBUG_H */