aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/syscall.h
blob: 44b88cf770a1ddb24009fcb1e631f1265db89c48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>

#include <syscallproto.h>

#include <fs.h>
#include <debug.h>

void dbg_print(const char* str);
void yield();
void exit(int code);

// more todo

/* vim: set ts=4 sw=4 tw=0 noet :*/