mirror of
https://github.com/kingk85/uFTP.git
synced 2025-04-20 00:18:57 +03:00
8 lines
206 B
C
8 lines
206 B
C
#ifndef ENABLE_PRINTF_MODULE
|
|
#define ENABLE_PRINTF
|
|
#ifdef ENABLE_PRINTF
|
|
#define my_printf printf
|
|
#else
|
|
#define my_printf(format, ...) // Empty macro, no action
|
|
#endif
|
|
#endif |