bond/include/kernel/hal/print.h

9 lines
137 B
C
Raw Normal View History

2018-03-24 00:58:24 +00:00
#ifndef KERNEL_HAL_PRINT_H
#define KERNEL_HAL_PRINT_H
2018-01-25 09:53:35 +00:00
#include "type.h"
2018-02-18 07:48:59 +00:00
void SXAPI hal_vprintf(const char *str, va_list args);
2018-01-25 19:11:22 +00:00
2018-03-24 00:58:24 +00:00
#endif