xref: /netbsd-src/sys/arch/i386/include/sysarch.h (revision ae9172d6cd9432a6a1a56760d86b32c57a66c39c)
1 /*	$NetBSD: sysarch.h,v 1.3 1994/10/27 04:16:29 cgd Exp $	*/
2 
3 #ifndef _I386_SYSARCH_H_
4 #define _I386_SYSARCH_H_
5 
6 /*
7  * Architecture specific syscalls (i386)
8  */
9 #define I386_GET_LDT	0
10 #define I386_SET_LDT	1
11 
12 #ifndef KERNEL
13 int i386_get_ldt __P((int, union descriptor *, int));
14 int i386_set_ldt __P((int, union descriptor *, int));
15 #endif
16 
17 #endif /* !_I386_SYSARCH_H_ */
18