bond/include/kernel/ke/print.h

11 lines
210 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
2018-02-18 04:06:57 +00:00
void KABI ke_printf(const char *str, ...);
void KABI ke_vprintf(const char *str, va_list args);
2018-01-25 19:11:22 +00:00
#endif