back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/calls.h
blob: a4469ce114c80557fb1b8a0db6445d59865eb70d (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CALLS_H_SENTRY
#define CALLS_H_SENTRY

int sys_write(int fd, const void *buf, int size);
int sys_read(int fd, void *buf, int size);
void *sys_alloc(int size);
void sys_free(void *p);
void sys_exit(int code);
extern int sys_errno;

#endif