diff options
Diffstat (limited to 'sysdeps/stub/socketpair.c')
-rw-r--r-- | sysdeps/stub/socketpair.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/stub/socketpair.c b/sysdeps/stub/socketpair.c index 77889b4..bc9b4b5 100644 --- a/sysdeps/stub/socketpair.c +++ b/sysdeps/stub/socketpair.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1991, 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 @@ -26,7 +26,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]) { errno = ENOSYS; return -1; |