This commit is contained in:
perry 1998-02-25 21:30:36 +00:00
parent 56c01cbd82
commit a5385186b1
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: init_sysent.c,v 1.82 1998/02/19 03:31:11 thorpej Exp $ */
/* $NetBSD: init_sysent.c,v 1.83 1998/02/25 21:30:36 perry Exp $ */
/*
* System call switch table.

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscalls.c,v 1.76 1998/02/19 03:31:12 thorpej Exp $ */
/* $NetBSD: syscalls.c,v 1.77 1998/02/25 21:30:36 perry Exp $ */
/*
* System call names.

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscall.h,v 1.77 1998/02/19 03:31:12 thorpej Exp $ */
/* $NetBSD: syscall.h,v 1.78 1998/02/25 21:31:19 perry Exp $ */
/*
* System call numbers.
@ -423,7 +423,7 @@
/* 164 is compat_09 ouname */
/* syscall: "sysarch" ret: "int" args: "int" "char *" */
/* syscall: "sysarch" ret: "int" args: "int" "void *" */
#define SYS_sysarch 165
/* 169 is compat_10 osemsys */

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscallargs.h,v 1.56 1998/02/19 03:31:12 thorpej Exp $ */
/* $NetBSD: syscallargs.h,v 1.57 1998/02/25 21:31:19 perry Exp $ */
/*
* System call argument lists.
@ -716,7 +716,7 @@ struct compat_09_sys_uname_args {
struct sys_sysarch_args {
syscallarg(int) op;
syscallarg(char *) parms;
syscallarg(void *) parms;
};
struct compat_10_sys_semsys_args {