freebsd-dev/sys/i386/include/sysarch.h
Rodney W. Grimes 34a8ed1be1 Removed all patch kit headers, sccsid and rcsid strings, put $Id$ in, some
minor cleanup.  Added $Id$ to files that did not have any version info, etc
1993-10-16 14:40:57 +00:00

13 lines
236 B
C

/*
* Architecture specific syscalls (i386)
*
* $Id$
*/
#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