This commit is contained in:
minoura 2000-04-21 16:18:54 +00:00
parent 58c5fb660b
commit 48145d0463
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_syscall.h,v 1.31 1999/08/25 04:48:48 thorpej Exp $ */
/* $NetBSD: freebsd_syscall.h,v 1.32 2000/04/21 16:18:54 minoura Exp $ */
/*
* System call numbers.

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_syscallargs.h,v 1.31 1999/08/25 04:48:48 thorpej Exp $ */
/* $NetBSD: freebsd_syscallargs.h,v 1.32 2000/04/21 16:18:54 minoura Exp $ */
/*
* System call argument lists.
@ -488,7 +488,7 @@ int sys_clock_gettime __P((struct proc *, void *, register_t *));
int sys_clock_settime __P((struct proc *, void *, register_t *));
int sys_clock_getres __P((struct proc *, void *, register_t *));
int sys_nanosleep __P((struct proc *, void *, register_t *));
int freebsd_sys_issetugid __P((struct proc *, void *, register_t *));
int sys_issetugid __P((struct proc *, void *, register_t *));
int freebsd_sys_lchown __P((struct proc *, void *, register_t *));
int sys_getdents __P((struct proc *, void *, register_t *));
int sys_lchmod __P((struct proc *, void *, register_t *));

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_syscalls.c,v 1.30 1999/08/25 04:48:48 thorpej Exp $ */
/* $NetBSD: freebsd_syscalls.c,v 1.31 2000/04/21 16:18:54 minoura Exp $ */
/*
* System call names.

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_sysent.c,v 1.32 1999/08/25 04:48:48 thorpej Exp $ */
/* $NetBSD: freebsd_sysent.c,v 1.33 2000/04/21 16:18:54 minoura Exp $ */
/*
* System call switch table.
@ -620,7 +620,7 @@ struct sysent freebsd_sysent[] = {
{ 0, 0,
sys_nosys }, /* 252 = unimplemented openbsd_poll */
{ 0, 0,
freebsd_sys_issetugid }, /* 253 = issetugid */
sys_issetugid }, /* 253 = issetugid */
{ 3, s(struct freebsd_sys_lchown_args),
freebsd_sys_lchown }, /* 254 = lchown */
{ 0, 0,