diff options
Diffstat (limited to 'socket/socket.c')
-rw-r--r-- | socket/socket.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/socket/socket.c b/socket/socket.c index 9fe8fd9..6f879ea 100644 --- a/socket/socket.c +++ b/socket/socket.c @@ -22,10 +22,7 @@ protocol PROTOCOL. If PROTOCOL is zero, one is chosen automatically. Returns a file descriptor for the new socket, or -1 for errors. */ int -__socket (domain, type, protocol) - int domain; - int type; - int protocol; +__socket (int domain, int type, int protocol) { __set_errno (ENOSYS); return -1; |