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

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

int getchar()
{
    return console_dev->getchar();
}