From: Ulrich Drepper Date: Sun, 8 Jul 2001 07:14:06 +0000 (+0000) Subject: (sendmsg): Fix return type. X-Git-Tag: glibc-2.16-ports-before-merge~1840 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f89b56b804ce6fee16bc1d436d0133e0908ee3e9;p=thirdparty%2Fglibc.git (sendmsg): Fix return type. --- diff --git a/sysdeps/unix/sysv/aix/sendmsg.c b/sysdeps/unix/sysv/aix/sendmsg.c index 9ab19a9dbf5..952bb066272 100644 --- a/sysdeps/unix/sysv/aix/sendmsg.c +++ b/sysdeps/unix/sysv/aix/sendmsg.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 @@ -20,7 +20,7 @@ extern int nsendmsg (int s, void *uap_msg, int flags); -int +ssize_t sendmsg (int fd, const struct msghdr *message, int flags) { return nsendmsg (fd, message, flags);