kern/kernel/io/io.c

9 lines
117 B
C

#include <lib.h>
#include <stdio.h>
void fputc(FILE *stream, char c) {
(void) stream;
(void) c;
// FIXME: !!!
}