summaryrefslogtreecommitdiff
path: root/kc/core/kstdio.c
blob: fdb52b7ca37b6fa9d7e3ca6f7f4fc9b6ac10ad52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "kprint.h"
#include "serial.h"

#include <sophialib.h>

#include <stdint.h>
#include <stdbool.h>

FILE *kstdout;

int kfputc(int c, FILE *f)
{
    (void)f;
    return serial_putchar(c);
}