1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Sun Jul 21 01:44:39 1996 Miles Bader <miles@gnu.ai.mit.edu>

* 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.
This commit is contained in:
Miles Bader
1996-07-21 06:52:29 +00:00
parent 6f9561ed06
commit c199a24feb
4 changed files with 22 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright (C) 1992, 1994, 1995 Free Software Foundation, Inc.
/* Copyright (C) 1992, 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
@@ -31,7 +31,7 @@ Cambridge, MA 02139, USA. */
one will be chosen automatically. Returns 0 on success, -1 for errors. */
int
DEFUN(socketpair, (domain, type, protocol, fds),
int domain AND enum __socket_type type AND int protocol AND int fds[2])
int domain AND int type AND int protocol AND int fds[2])
{
error_t err;
socket_t server, sock1, sock2;