summaryrefslogtreecommitdiff
path: root/riscv/riscv-probe/libfemto/std/putchar.c
blob: 3066a6578badbbff10ebe7aed2fdb2639c8897b1 (plain)
1
2
3
4
5
6
7
8
9
// See LICENSE for license details.

#include <stdio.h>
#include <device.h>

int putchar(int ch)
{
    return console_dev->putchar(ch);
}