diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-23 23:23:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-23 23:23:54 +0000 |
commit | 5606e4d6f92c10af214b54a01db79cf561067e58 (patch) | |
tree | f50c5adf765ad7492736b3fb0e9ae669573e4e5e /include/sys | |
parent | 56c9a8402ff4c9004331efc77e5a5fe62aa65014 (diff) |
More reorg. A place for everything and everything in its place...
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/socket.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/sys/socket.h b/include/sys/socket.h index 7642e7502..43bd6d6ea 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -117,8 +117,6 @@ extern int getsockname __P ((int __fd, __SOCKADDR_ARG __addr, For connectionless socket types, just set the default address to send to and the only address from which to accept transmissions. Return 0 on success, -1 for errors. */ -extern int __connect __P ((int __fd, - __CONST_SOCKADDR_ARG __addr, socklen_t __len)); extern int connect __P ((int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len)); @@ -129,8 +127,6 @@ extern int getpeername __P ((int __fd, __SOCKADDR_ARG __addr, /* Send N bytes of BUF to socket FD. Returns the number sent or -1. */ -extern int __send __P ((int __fd, __const __ptr_t __buf, size_t __n, - int __flags)); extern int send __P ((int __fd, __const __ptr_t __buf, size_t __n, int __flags)); |