Define i386_[gs]et_ldt_args here.

This commit is contained in:
mycroft 1995-05-06 19:19:57 +00:00
parent 56b5c26854
commit 7a69a9c95b

View File

@ -1,4 +1,4 @@
/* $NetBSD: sysarch.h,v 1.4 1995/03/28 18:17:23 jtc Exp $ */
/* $NetBSD: sysarch.h,v 1.5 1995/05/06 19:19:57 mycroft Exp $ */
#ifndef _I386_SYSARCH_H_
#define _I386_SYSARCH_H_
@ -9,6 +9,18 @@
#define I386_GET_LDT 0
#define I386_SET_LDT 1
struct i386_get_ldt_args {
int start;
union descriptor *desc;
int num;
};
struct i386_set_ldt_args {
int start;
union descriptor *desc;
int num;
};
#ifndef _KERNEL
int i386_get_ldt __P((int, union descriptor *, int));
int i386_set_ldt __P((int, union descriptor *, int));