diff options
Diffstat (limited to 'sysdeps/unix/make-syscalls.sh')
-rw-r--r-- | sysdeps/unix/make-syscalls.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/unix/make-syscalls.sh b/sysdeps/unix/make-syscalls.sh index 4fea51adef..0ec8b28fd2 100644 --- a/sysdeps/unix/make-syscalls.sh +++ b/sysdeps/unix/make-syscalls.sh @@ -88,6 +88,7 @@ while read file srcfile caller syscall args strong weak; do case $args in C*) cancellable=-cancel; args=`echo $args | sed 's/C:\?//'`;; E*) noerrno=_NOERRNO; args=`echo $args | sed 's/E:\?//'`;; + V*) noerrno=_ERRVAL; args=`echo $args | sed 's/V:\?//'`;; esac # Derive the number of arguments from the argument signature |