NetBSD/sys/arch/i386/include/sysarch.h
1995-03-28 18:13:48 +00:00

18 lines
371 B
C

/* $NetBSD: sysarch.h,v 1.4 1995/03/28 18:17:23 jtc Exp $ */
#ifndef _I386_SYSARCH_H_
#define _I386_SYSARCH_H_
/*
* 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
#endif /* !_I386_SYSARCH_H_ */