]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(sendmsg): Fix return type.
authorUlrich Drepper <drepper@redhat.com>
Sun, 8 Jul 2001 07:14:06 +0000 (07:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 8 Jul 2001 07:14:06 +0000 (07:14 +0000)
sysdeps/unix/sysv/aix/sendmsg.c

index 9ab19a9dbf5d12706e163f14895a6fec0e328727..952bb06627222a6dd14d167b41687637b8d912d0 100644 (file)
@@ -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);