(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 9ab19a9..952bb06 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);