freebsd-dev/sys/amd64/include/sysarch.h
1993-10-08 11:31:40 +00:00

11 lines
225 B
C

/*
* Architecture specific syscalls (i386)
*/
#define I386_GET_LDT 0
#define I386_SET_LDT 1
#ifndef KERNEL
int i386_get_ldt __P((int, union descriptor *, int));
int i386_set_ldt __P((int, union descriptor *, int));
#endif