5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 Desc: syscalls definitions
12 #include <exec/types.h>
13 #include <exec/libraries.h>
17 #define SYSTEM_CALL(name, x...) ,SYS_##name
18 SYS_clibdummy
= LIB_RESERVED
19 #include <sys/syscall.def>
23 extern struct Library
*aroscbase
;
24 #define syscall(name,args...) \
25 ((int (*)())__AROS_GETVECADDR(aroscbase, name))(args)
27 #endif /* _SYSCALL_H_ */