This commit is contained in:
minoura 2000-04-21 16:16:15 +00:00
parent f6051edef5
commit d982197440
4 changed files with 12 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: init_sysent.c,v 1.114 2000/04/17 14:33:11 mrg Exp $ */
/* $NetBSD: init_sysent.c,v 1.115 2000/04/21 16:16:15 minoura Exp $ */
/*
* System call switch table.
@ -787,5 +787,7 @@ struct sysent sysent[] = {
#endif
{ 2, s(struct sys_lchflags_args),
sys_lchflags }, /* 304 = lchflags */
{ 0, 0,
sys_issetugid }, /* 305 = issetugid */
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscalls.c,v 1.108 2000/04/17 14:33:12 mrg Exp $ */
/* $NetBSD: syscalls.c,v 1.109 2000/04/21 16:16:15 minoura Exp $ */
/*
* System call names.
@ -405,4 +405,5 @@ char *syscallnames[] = {
"#303 (excluded __shmctl13)", /* 303 = excluded __shmctl13 */
#endif
"lchflags", /* 304 = lchflags */
"issetugid", /* 305 = issetugid */
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscall.h,v 1.107 2000/04/17 14:33:12 mrg Exp $ */
/* $NetBSD: syscall.h,v 1.108 2000/04/21 16:16:16 minoura Exp $ */
/*
* System call numbers.
@ -707,4 +707,7 @@
/* syscall: "lchflags" ret: "int" args: "const char *" "u_long" */
#define SYS_lchflags 304
#define SYS_MAXSYSCALL 305
/* syscall: "issetugid" ret: "int" args: */
#define SYS_issetugid 305
#define SYS_MAXSYSCALL 306

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscallargs.h,v 1.88 2000/04/17 14:33:12 mrg Exp $ */
/* $NetBSD: syscallargs.h,v 1.89 2000/04/21 16:16:16 minoura Exp $ */
/*
* System call argument lists.
@ -1499,4 +1499,5 @@ int sys___shmctl13 __P((struct proc *, void *, register_t *));
#else
#endif
int sys_lchflags __P((struct proc *, void *, register_t *));
int sys_issetugid __P((struct proc *, void *, register_t *));
#endif /* _SYS__SYSCALLARGS_H_ */