/** * @file * @brief Compatibility layer for different printf implementations. * * Configuration: * * STA_PRINTF_USE_MPALAND: Use printf implementation from Marco Paland */ #ifndef STA_CORE_PRINTF_HPP #define STA_CORE_PRINTF_HPP #include #ifdef STA_PRINTF_USE_MPALAND # include #else # include #endif // STA_PRINTF_USE_MPALAND #endif // STA_CORE_PRINTF_HPP