aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/syscall.h
blob: 37d7302c9d0ab508b74c3be66462274c52505518 (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 <syscallid.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 :*/