Home | History | Annotate | Line # | Download | only in include
sysarch.h revision 1.4
      1 /*	$NetBSD: sysarch.h,v 1.4 1995/03/28 18:17:23 jtc 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