sysarch.h revision 719
1/*
2 * Architecture specific syscalls (i386)
3 *
4 *	$Id: sysarch.h,v 1.2 1993/10/16 14:39:35 rgrimes Exp $
5 */
6#ifndef _MACHINE_SYSARCH_H_
7#define _MACHINE_SYSARCH_H_ 1
8
9#include <sys/cdefs.h>
10
11#define I386_GET_LDT	0
12#define I386_SET_LDT	1
13
14#ifdef KERNEL
15/* nothing here yet... */
16#else /* not KERNEL */
17__BEGIN_DECLS
18
19int i386_get_ldt __P((int, union descriptor *, int));
20int i386_set_ldt __P((int, union descriptor *, int));
21
22__END_DECLS
23#endif /* not KERNEL */
24#endif /* _MACHINE_SYSARCH_H_ */
25