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

#include <lib.h>

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

FILE *kstdout;

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