diff options
Diffstat (limited to 'sw/z80/libc/stdio.c')
-rw-r--r-- | sw/z80/libc/stdio.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sw/z80/libc/stdio.c b/sw/z80/libc/stdio.c deleted file mode 100644 index c2548d6..0000000 --- a/sw/z80/libc/stdio.c +++ /dev/null @@ -1,12 +0,0 @@ -#include "stdio.h" - -void putc(char ch, uint8_t *buffer) -{ - *buffer = ch; - *(++buffer) = '\0'; -} - - -int printf(const char *fmt, ...) -{ -} |