/* * (C) Copyright 2014 Leo C. * * SPDX-License-Identifier: GPL-2.0+ */ #ifndef DEBUG_H_ #define DEBUG_H_ #ifdef DEBUG #define DBG_P(lvl, ...) if (DEBUG>=lvl) fprintf( stderr, __VA_ARGS__ ) #else #define DBG_P(lvl, ...) #endif #endif /* DEBUG_H_ */