diff options
author | Miles Bader <miles@gnu.org> | 1996-07-21 06:52:29 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-07-21 06:52:29 +0000 |
commit | c199a24feb079bf0f81f8cedcfe55e99c47ac415 (patch) | |
tree | 7faeed37f8ab18c8e9760e64d5d00935171623c5 /sysdeps/mach/hurd/socket.c | |
parent | 6f9561ed067bb4eed53ec4872fe773c64a2df1c5 (diff) | |
download | glibc-c199a24feb079bf0f81f8cedcfe55e99c47ac415.tar.gz glibc-c199a24feb079bf0f81f8cedcfe55e99c47ac415.tar.xz glibc-c199a24feb079bf0f81f8cedcfe55e99c47ac415.zip |
Sun Jul 21 01:44:39 1996 Miles Bader <miles@gnu.ai.mit.edu> cvs/libc-960721
* locale/programs/locfile.c (write_locale_data): Deal with missing UIO_MAXIOV. * sysdeps/mach/hurd/socket.c (socket): Make TYPE an int. * sysdeps/mach/hurd/socketpair.c (socketpair): Likewise.
Diffstat (limited to 'sysdeps/mach/hurd/socket.c')
-rw-r--r-- | sysdeps/mach/hurd/socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/socket.c b/sysdeps/mach/hurd/socket.c index 282c24e36b..423e8fe8b1 100644 --- a/sysdeps/mach/hurd/socket.c +++ b/sysdeps/mach/hurd/socket.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1993, 1994, 1995, 1996 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 @@ -29,7 +29,7 @@ Cambridge, MA 02139, USA. */ Returns a file descriptor for the new socket, or -1 for errors. */ int DEFUN(socket, (domain, type, protocol), - int domain AND enum __socket_type type AND int protocol) + int domain AND int type AND int protocol) { error_t err; socket_t sock, server; |