blob: d39b620bff3c919c5562295c74dc0fa8296e8332 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef KERN_SYSCALL_H_
#define KERN_SYSCALL_H_
#define SYSCALL(id, fn, kernfn, argt) void kernfn(argt arg);
#include "kern/syscall/syscall_tbl.inc"
#undef SYSCALL
#endif
|