wolfBoot/include/printf.h

12 lines
171 B
C

#ifndef WOLFBOOT_PRINTF_INCLUDED
#define WOLFBOOT_PRINTF_INCLUDED
#ifdef PRINTF_ENABLED
/* TODO */
#else
# define wolfBoot_printf(...) do{}while(0)
#endif
#endif