1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2026-05-17 19:24:21 +08:00

clean up some debug ifdefs

This commit is contained in:
rofl0r
2015-06-14 10:53:33 +01:00
Unverified
parent 51b2eb91ce
commit afe6171cad
2 changed files with 4 additions and 5 deletions
+2
View File
@@ -5,12 +5,14 @@
# include <stdio.h>
# define PSTDERR(fmt, args...) do { dprintf(2,fmt, ## args); } while(0)
# define PDEBUG(fmt, args...) PSTDERR("DEBUG:"fmt, ## args)
# define DEBUGDECL(args...) args
# include "core.h"
void DUMP_PROXY_CHAIN(proxy_data *pchain, unsigned int count);
#else
# define PDEBUG(fmt, args...) do {} while (0)
# define DEBUGDECL(args...)
# define DUMP_PROXY_CHAIN(args...) do {} while (0)
#endif