diff options
author | Doug Hogan <doug@cvs.openbsd.org> | 2014-09-01 05:09:54 +0000 |
---|---|---|
committer | Doug Hogan <doug@cvs.openbsd.org> | 2014-09-01 05:09:54 +0000 |
commit | 98ad40e7bd2ac80aa021209993730dc0f7375df1 (patch) | |
tree | 450c5258b42fef61b3a50e78efe1c53982fd194c /sys/compat | |
parent | 99bc60114269e8bc8dc8fea4d3ad3efaab0993c3 (diff) |
Sync readlink(2) with IEEE Std 1003.1-2008.
discussion, help and ok guenther@
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/syscalls.master | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index c46067207f1..a93e2493146 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.75 2013/11/03 13:52:44 pirofti Exp $ + $OpenBSD: syscalls.master,v 1.76 2014/09/01 05:09:53 doug Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -156,8 +156,8 @@ 83 STD { int linux_sys_symlink(char *path, char *to); } 84 NOARGS { int linux_sys_lstat(char *path, \ struct linux_stat *up); } olstat -85 STD { int linux_sys_readlink(char *name, char *buf, \ - int count); } +85 STD { ssize_t linux_sys_readlink(char *name, \ + char *buf, int count); } 86 UNIMPL linux_sys_uselib 87 STD { int linux_sys_swapon(char *name); } 88 NOARGS { int sys_reboot(int opt); } |