diff options
author | Andreas Jaeger <aj@suse.de> | 2000-08-23 17:05:51 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-08-23 17:05:51 +0000 |
commit | 8f589a7cfe1a965d5c148290f388e08a137a5884 (patch) | |
tree | 06ae82796ed5c6e796e980c74590e438a7207284 /socket | |
parent | 56ce46d5698396165995b89b790a6c21a515d2b3 (diff) | |
download | glibc-8f589a7cfe1a965d5c148290f388e08a137a5884.tar.gz glibc-8f589a7cfe1a965d5c148290f388e08a137a5884.tar.xz glibc-8f589a7cfe1a965d5c148290f388e08a137a5884.zip |
* misc/sys/select.h: Move prototypes of __select from here ...
* include/sys/select.h: ... to here. * socket/sys/socket.h: Move prototypes of __send and __connect from here.... * include/sys/socket.h: ... to here.
Diffstat (limited to 'socket')
-rw-r--r-- | socket/sys/socket.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/socket/sys/socket.h b/socket/sys/socket.h index 1655d956e8..f049a79ac4 100644 --- a/socket/sys/socket.h +++ b/socket/sys/socket.h @@ -117,8 +117,6 @@ extern int getsockname (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 (int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len) - __THROW; extern int connect (int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len) __THROW; @@ -129,8 +127,6 @@ extern int getpeername (int __fd, __SOCKADDR_ARG __addr, /* Send N bytes of BUF to socket FD. Returns the number sent or -1. */ -extern int __send (int __fd, __const void *__buf, size_t __n, int __flags) - __THROW; extern int send (int __fd, __const void *__buf, size_t __n, int __flags) __THROW; |