mirror of https://github.com/n1nj4sec/pupy.git
Avoid redifinition
This commit is contained in:
parent
90c0efaca1
commit
6ef4ebd431
|
@ -26,6 +26,15 @@ static inline int dfprint(FILE *stream, const char *fmt, ...) {
|
|||
|
||||
#define dprint(...) do {} while (0)
|
||||
#define dfprint(...) do {} while (0)
|
||||
|
||||
#ifdef printf
|
||||
#undef printf
|
||||
#endif
|
||||
|
||||
#ifdef fprintf
|
||||
#undef fprintf
|
||||
#endif
|
||||
|
||||
#define printf(...) do {} while (0)
|
||||
#define fprintf(...) do {} while (0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue