bond/x64/src/include/kernel/ke/print.h

9 lines
164 B
C
Raw Normal View History

2018-01-25 19:11:22 +00:00
#ifndef _KE_PRINT_H_
#define _KE_PRINT_H_
#include "abi.h"
void KABI ke_printf(const char* str, ...);
void KABI ke_vprintf(const char* str, va_list args);
#endif