diff options
Diffstat (limited to 'lib/libc/i386/sys/i386_set_ioperm.c')
-rw-r--r-- | lib/libc/i386/sys/i386_set_ioperm.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/libc/i386/sys/i386_set_ioperm.c b/lib/libc/i386/sys/i386_set_ioperm.c index 9b5bcd0..11f4caa 100644 --- a/lib/libc/i386/sys/i386_set_ioperm.c +++ b/lib/libc/i386/sys/i386_set_ioperm.c @@ -23,24 +23,23 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: i386_set_ioperm.c,v 1.1 1998/07/28 03:39:03 jlemon Exp $ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$Id$"; +static const char rcsid[] = "$Id: i386_set_ioperm.c,v 1.1 1998/07/28 03:39:03 jlemon Exp $"; #endif /* LIBC_RCS and not lint */ -#include <sys/types.h> #include <machine/sysarch.h> struct parms { - u_int start; - u_int length; + unsigned int start; + unsigned int length; int enable; }; int -i386_set_ioperm(u_int start, u_int length, int enable) +i386_set_ioperm(unsigned int start, unsigned int length, int enable) { struct parms p; |