/* printk.h - low-level debug output */ /* * Copyright (c) 2010-2012, 2014 Wind River Systems, Inc. * * SPDX-License-Identifier: Apache-2.0 */ #ifndef ZEPHYR_INCLUDE_SYS_PRINTK_H_ #define ZEPHYR_INCLUDE_SYS_PRINTK_H_ #include #include #include #include #ifdef __cplusplus extern "C" { #endif #define snprintk snprintf #define printk printf #ifdef __cplusplus } #endif #endif