bond/include/kernel/ke/print.h

10 lines
209 B
C
Raw Normal View History

2018-01-26 08:43:22 +00:00
#ifndef _KERNEL_KE_PRINT_H_
#define _KERNEL_KE_PRINT_H_
2018-01-25 19:11:22 +00:00
2018-01-26 08:43:22 +00:00
#include "type.h"
#include "kernel/hal/print.h"
2018-01-25 19:11:22 +00:00
void KABI ke_printf(const char* str, ...);
void KABI ke_vprintf(const char* str, va_list args);
#endif