summaryrefslogtreecommitdiffstats
path: root/sw/z80/libc/stdio.c
blob: c2548d6180d62a6e4dab43bbe15d3a325f08e95a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stdio.h"

void putc(char ch, uint8_t *buffer)
{
    *buffer = ch;
    *(++buffer) = '\0';
}


int printf(const char *fmt, ...)
{
}