Disable printf and fprintf when compiling with SUPPRESS_PRINTF_FALLBACK

This commit is contained in:
Joseph Bisch 2018-08-29 21:05:33 -04:00
commit c892c780c5

View file

@ -116,4 +116,9 @@ typedef struct _CHANNEL_SETUP_REC CHANNEL_SETUP_REC;
typedef struct _WINDOW_REC WINDOW_REC;
#ifdef SUPPRESS_PRINTF_FALLBACK
#define printf(fmt, ...) (0)
#define fprintf(stream, fmt, ...) (0)
#endif
#endif