xref: /haiku/headers/private/system/generic_syscall_defs.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _SYSTEM_GENERIC_SYSCALLS_DEFS_H
6 #define _SYSTEM_GENERIC_SYSCALLS_DEFS_H
7 
8 
9 /* predefined functions */
10 #define B_RESERVED_SYSCALL_BASE		0x80000000
11 #define B_SYSCALL_INFO				(B_RESERVED_SYSCALL_BASE)
12 	// gets a minimum version uint32, and fills it with the current version on
13 	// return
14 
15 
16 #endif	/* _SYSTEM_GENERIC_SYSCALLS_DEFS_H */
17