basic implemtation general purpose clock and tinyprintf
[cortex-from-scratch] / lib / stdio.c
index ac26165..9ef20ee 100644 (file)
@@ -31,6 +31,12 @@ void cputchar(char c) {
 
 }
 
+void putc(void *p, char c) {
+
+       cputchar(c);
+
+}
+
 void cputs(unsigned char *str) {
      
      int i;