bond/include/kernel/ke/print.h
2018-01-31 14:10:24 -05:00

10 lines
209 B
C

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