18 lines
281 B
C
18 lines
281 B
C
#ifndef __SMCC_CORE_LOG_H__
|
|
#define __SMCC_CORE_LOG_H__
|
|
|
|
#ifndef log_snprintf
|
|
#define log_snprintf smcc_snprintf
|
|
#endif
|
|
|
|
#ifndef log_printf
|
|
#define log_printf smcc_printf
|
|
#endif
|
|
|
|
#ifndef log_exit
|
|
#define log_exit smcc_exit
|
|
#endif
|
|
#include <log.h>
|
|
|
|
#endif /* __SMCC_CORE_LOG_H__ */
|