aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/syscall.c
blob: 42786d4007564df61d7be958b4997461422f2624 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <syscall.h>

/**
 * DEFINITIONS
 */
DEFN_SYSCALL0(halt, 0);

DEFN_SYSCALL1(exec, 1, char *);

DEFN_SYSCALL1(putch, 2, char *);

DEFN_SYSCALL0(getch, 3);

DEFN_SYSCALL1(malloc, 4, u32);

DEFN_SYSCALL1(free, 5, u32);