summaryrefslogtreecommitdiff
path: root/include/kernel/io.h
blob: cf8404a16018a427b6dd5b63caf5e94e3db2dcc2 (plain)
1
2
3
4
5
6
7
8
9
#ifndef KERNEL_IO_H
#define KERNEL_IO_H

#include <stdarg.h>

int vkprintf(const char *fmt, va_list args);
int kprintf(const char *fmt, ...);

#endif