13 lines
172 B
C
13 lines
172 B
C
|
#ifndef _APP_LOG_H
|
||
|
#define _APP_LOG_H
|
||
|
|
||
|
void init_printf_mutex(void);
|
||
|
void thread_safe_printf(const char *format, ...) ;
|
||
|
|
||
|
#define app_printf thread_safe_printf
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|