The unified diff between revisions [1dfe3b7e..] and [4cc7246c..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'uart.h'

#
# old_revision [1dfe3b7eee76f3c8aea3b33932857682ee17701c]
# new_revision [4cc7246c1b6c809c9dc15997798f6deed15b3631]
#
# patch "uart.h"
#  from [2d08795e26e7e976bded494c773936c5f91d1b69]
#    to [4acdb1f160b933d1653b3ac765f110cd71332112]
#
============================================================
--- uart.h	2d08795e26e7e976bded494c773936c5f91d1b69
+++ uart.h	4acdb1f160b933d1653b3ac765f110cd71332112
@@ -1,11 +1,14 @@
 #ifndef __UART_H
 #define __UART_H
 
+#include "types.h"
+
 void init_uart(void);
 void putch(char c);
 void putstr(char *s);
 void putint(unsigned int n);
+void putint_s(int n);
 void puthex(unsigned int n);
-char getch(void);
+bool getch(char *c);
 
 #endif /* __UART_H */