blob: e0f08eb048ca208b28cabc81ee419f78a5fe6b2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#include <syscallproto.h>
#include <mmap.h>
#include <fs.h>
#include <debug.h>
void dbg_print(const char* str);
void yield();
void exit(int code);
bool mmap(void* addr, size_t size, int mode);
bool mchmap(void* addr, int mode);
bool munmap(void* addr);
// more todo
/* vim: set ts=4 sw=4 tw=0 noet :*/
|