blob: 57e10f545cb609f9f312752de570d1107840343d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "stage1.h"
#include <kernel/syscall.h>
void
kputc(char c)
{
_syscall_payload[0] = c;
syscall_invoke_noret(SYSCALL_DEBUG_PUTC);
}
void
kputs(const char *s)
{
for(; *s; s++) kputc(*s);
}
|