xref: /freebsd/sys/i386/include/sysarch.h (revision f43bd59ec730d662d11b9f507c2579e164a55ee3)
1 /*
2  * Architecture specific syscalls (i386)
3  */
4 #define I386_GET_LDT	0
5 #define I386_SET_LDT	1
6 
7 #ifndef KERNEL
8 int i386_get_ldt __P((int, union descriptor *, int));
9 int i386_set_ldt __P((int, union descriptor *, int));
10 #endif
11