The unified diff between revisions [65df00aa..] and [81e4dce2..] 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 [65df00aa2705ce33fd74f4dd706d2879fe99b2b0]
# new_revision [81e4dce274e79dd9187ed4bd182e1d6fc0fdfb37]
#
# patch "uart.h"
#  from [0b8aacd8b3674937065175bb8fd6ce1feafd477e]
#    to [86972bb7765797e0b5e660710beed2a9bbd9ec13]
#
============================================================
--- uart.h	0b8aacd8b3674937065175bb8fd6ce1feafd477e
+++ uart.h	86972bb7765797e0b5e660710beed2a9bbd9ec13
@@ -3,11 +3,22 @@
 
 #include "types.h"
 
+#ifdef USE_UART
 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);
 bool getch(char *c);
+#else
+#define init_uart() ((void)0)
+#define putch(x) ((void)0)
+#define putstr(x) ((void)0)
+#define putint(x) ((void)0)
+#define putint_s(x) ((void)0)
+#define puthex(x) ((void)0)
+#define getch(x) (FALSE)
+#endif
 
 #endif /* __UART_H */