mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
22 lines
410 B
C++
22 lines
410 B
C++
/**
|
|
* @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 <sta/config.hpp>
|
|
|
|
|
|
#ifdef STA_PRINTF_USE_MPALAND
|
|
# include <printf.h>
|
|
#else
|
|
# include <cstdio>
|
|
#endif // STA_PRINTF_USE_MPALAND
|
|
|
|
|
|
#endif // STA_CORE_PRINTF_HPP
|