Argh, pad the off_t args in pread/pwrite/preadv/pwritev. System call

numbers don't change since the window of brokenness was so small (1 day).
This commit is contained in:
thorpej 1998-07-02 01:23:33 +00:00
parent 4f500bad2e
commit d4e618b3a5
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
$NetBSD: syscalls.master,v 1.79 1998/06/30 19:33:11 thorpej Exp $
$NetBSD: syscalls.master,v 1.80 1998/07/02 01:23:33 thorpej Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@ -337,9 +337,9 @@
#endif
172 UNIMPL
173 STD { ssize_t sys_pread(int fd, void *buf, \
size_t nbyte, off_t offset); }
size_t nbyte, int pad, off_t offset); }
174 STD { ssize_t sys_pwrite(int fd, const void *buf, \
size_t nbyte, off_t offset); }
size_t nbyte, int pad, off_t offset); }
175 STD { int sys_ntp_gettime(struct ntptimeval *ntvp); }
176 STD { int sys_ntp_adjtime(struct timex *tp); }
177 UNIMPL
@ -544,7 +544,7 @@
#endif
289 STD { ssize_t sys_preadv(int fd, \
const struct iovec *iovp, int iovcnt, \
off_t offset); }
int pad, off_t offset); }
290 STD { ssize_t sys_pwritev(int fd, \
const struct iovec *iovp, int iovcnt, \
off_t offset); }
int pad, off_t offset); }