summaryrefslogtreecommitdiffstats
path: root/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'uart.h')
-rw-r--r--uart.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/uart.h b/uart.h
index 81db74b..854cd14 100644
--- a/uart.h
+++ b/uart.h
@@ -2,7 +2,8 @@
#define UART_H
void uart_init(void);
-void uart_write(char c);
+void uart_write_char(char c);
+void uart_write(const char *s);
void uart_write_line(const char *s);
#endif /* UART_H */