blob: 1d0bfa99e78b4244dd36c35dc9d37c16ca173fa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "serial.h"
#include <stdint.h>
#include <stdbool.h>
#include <lib/kstdio.h>
#include <lib/kstring.h>
FILE *kstdout;
int kfputc(int c, FILE *f)
{
(void)f;
return serial_putchar(c);
}
|