| #ifndef _DEBUG_H | |
| #define _DEBUG_H | |
| #include <stdio.h> | |
| #define DEBUG | |
| #ifdef DEBUG | |
| # undef DEBUG | |
| # define DEBUG(level, str, args...) dbglog("DHCPC: " str, ## args) | |
| # define DEBUGGING | |
| #else | |
| # define DEBUG(level, str, args...) do {;} while(0) | |
| #endif | |
| #define LOG(level, str, args...) info("DHCPC: " str, ## args) | |
| #endif |