2019-04-03 08:51:46 +00:00
|
|
|
#pragma once
|
2019-04-01 11:21:00 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
/* A temporary file, to get the system compiling. */
|
|
|
|
|
2019-04-03 08:51:46 +00:00
|
|
|
size_t strlen(const char*);
|
|
|
|
|
|
|
|
unsigned char inb(unsigned short);
|
|
|
|
|
|
|
|
void outb(unsigned short, unsigned char);
|