diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-24 14:18:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-24 14:18:02 +0000 |
commit | 2ee403d414670c448cf281f3e142c11254b171bb (patch) | |
tree | d4db582a4783d4be2f86cd39bd68ea6325d55a6a /linuxthreads/wrapsyscall.c | |
parent | c2063191c35b57831414ed9a48e549ba3d2d2321 (diff) | |
download | glibc-2ee403d414670c448cf281f3e142c11254b171bb.tar.gz glibc-2ee403d414670c448cf281f3e142c11254b171bb.tar.xz glibc-2ee403d414670c448cf281f3e142c11254b171bb.zip |
Fix typos in last patch.
Diffstat (limited to 'linuxthreads/wrapsyscall.c')
-rw-r--r-- | linuxthreads/wrapsyscall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/wrapsyscall.c b/linuxthreads/wrapsyscall.c index 74923e14e4..5acc60b1a1 100644 --- a/linuxthreads/wrapsyscall.c +++ b/linuxthreads/wrapsyscall.c @@ -208,7 +208,7 @@ CANCELABLE_SYSCALL (ssize_t, recvmsg, (int fd, struct msghdr *message, int flags (fd, message, flags)) /* send(2). */ -CANCELABLE_SYSCALL (ssize_t, send, (ssize_t fd, const __ptr_t buf, size_t n, +CANCELABLE_SYSCALL (ssize_t, send, (int fd, const __ptr_t buf, size_t n, int flags), (fd, buf, n, flags)) strong_alias (send, __send) @@ -219,7 +219,7 @@ CANCELABLE_SYSCALL (ssize_t, sendmsg, (int fd, const struct msghdr *message, (fd, message, flags)) /* sendto(2). */ -CANCELABLE_SYSCALL (ssize_t, sendto, (ssize_t fd, const __ptr_t buf, size_t n, +CANCELABLE_SYSCALL (ssize_t, sendto, (int fd, const __ptr_t buf, size_t n, int flags, __CONST_SOCKADDR_ARG addr, socklen_t addr_len), (fd, buf, n, flags, addr, addr_len)) |