summaryrefslogtreecommitdiff
path: root/Source/Library/Userland/Syscall/Syscall.wtf.h
blob: b220d14fc0c2a54c340c017d15d1cfd73c2eb181 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef DEF_SYSCALL_WTF_H
#define DEF_SYSCALL_WTF_H

#include <types.h>

void putch(char);
unsigned int syscall(unsigned int n, unsigned int a, unsigned int b = 0, unsigned int c = 0);

#endif