Add system call lchmod (#274), lchown (#275) and lutimes (#276).

This commit is contained in:
enami 1997-10-03 15:06:18 +00:00
parent 83d3cd0ec7
commit 9ccb5d2e4d
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
$NetBSD: syscalls.master,v 1.55 1997/09/09 08:05:35 veego Exp $
$NetBSD: syscalls.master,v 1.56 1997/10/03 15:06:18 enami Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@ -501,3 +501,8 @@
272 UNIMPL
273 STD { int sys_minherit(caddr_t addr, size_t len, \
int inherit); }
274 STD { int sys_lchmod(const char *path, int mode); }
275 STD { int sys_lchown(const char *path, uid_t uid, \
gid_t gid); }
276 STD { int sys_lutimes(const char *path, \
const struct timeval *tptr); }