bond/include/kernel/ke/print.h
2018-02-18 02:48:59 -05:00

11 lines
212 B
C

#ifndef _KERNEL_KE_PRINT_H_
#define _KERNEL_KE_PRINT_H_
#include "type.h"
#include "kernel/hal/print.h"
void SXAPI ke_printf(const char *str, ...);
void SXAPI ke_vprintf(const char *str, va_list args);
#endif