mirror of
https://github.com/trustedsec/ELFLoader
synced 2026-06-08 17:56:51 +00:00
10 lines
166 B
C
10 lines
166 B
C
#ifndef _DEBUG_H_
|
|
#define _DEBUG_H_
|
|
|
|
#if defined( DEBUG )
|
|
#define DEBUG_PRINT(x, ...) printf(x, ##__VA_ARGS__)
|
|
#else
|
|
#define DEBUG_PRINT(x, ...)
|
|
#endif
|
|
#endif
|