#define DEBUG
#include <stdio.h> /* For stderr */
#define EPRINTF(str, args...) fprintf(stderr, str, ##args) /* error output*/
#if DEBUG
#define DPRINTF(str, args...) fprintf(stderr, str, ##args) /* debug output*/
#else
#define DPRINTF(str, ...) /* no debug output*/
#endif
1232

被折叠的 条评论
为什么被折叠?



