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