mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 04:42:25 +00:00
9 lines
117 B
C
9 lines
117 B
C
#include <lib.h>
|
|
#include <stdio.h>
|
|
|
|
void fputc(FILE *stream, char c) {
|
|
(void) stream;
|
|
(void) c;
|
|
|
|
// FIXME: !!!
|
|
}
|