prime/libc/console_io.h
Phillip Stephens 7fbf44a471 Match and link Gecko_ExceptionPPC and uart_console_write
Former-commit-id: 0e8b7c5637c379b9dcdca42b23b49cd411f84794
2022-10-10 10:44:50 -07:00

18 lines
284 B
C

#ifndef _CONSOLE_IO
#define _CONSOLE_IO
#include "stddef.h"
#include "file_struc.h"
#ifdef __cplusplus
extern "C" {
#endif
int __write_console(__file_handle handle, unsigned char * buffer, size_t * count, __idle_proc idle_proc);
#ifdef __cplusplus
}
#endif
#endif // _CONSOLE_IO