diff options
Diffstat (limited to 'sysdeps/stub/socket.c')
-rw-r--r-- | sysdeps/stub/socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/stub/socket.c b/sysdeps/stub/socket.c index 5012cf2cc9..26f550db87 100644 --- a/sysdeps/stub/socket.c +++ b/sysdeps/stub/socket.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 @@ -25,7 +25,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) { errno = ENOSYS; return -1; |