From: Ulrich Drepper Date: Sun, 8 Jul 2001 07:02:19 +0000 (+0000) Subject: Fix various types. X-Git-Tag: upstream/2.20~3636^2~1844 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a207bef32fdf9807e79f3f9a3a39842dd43a6d23;p=platform%2Fupstream%2Flinaro-glibc.git Fix various types. --- diff --git a/sysdeps/unix/sysv/aix/recvfrom.c b/sysdeps/unix/sysv/aix/recvfrom.c index 723a2c8..0826428 100644 --- a/sysdeps/unix/sysv/aix/recvfrom.c +++ b/sysdeps/unix/sysv/aix/recvfrom.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,10 +18,10 @@ #include -extern int nrecvfrom (int s, void *uap_buf, int len, int flags, - void *uap_from, int *uap_fromlenaddr); +extern ssize_t nrecvfrom (int s, void *uap_buf, size_t len, int flags, + void *uap_from, socklen_t *uap_fromlenaddr); -int +ssize_t recvfrom (int fd, void *buf, size_t n, int flags, __SOCKADDR_ARG addr, socklen_t *addr_len) {