12345678910111213141516171819202122232425262728293031323334 |
- #include <errno.h>
- #include <sys/socket.h>
- int
- __socket (int domain, int type, int protocol)
- {
- __set_errno (ENOSYS);
- return -1;
- }
- libc_hidden_def (__socket)
- weak_alias (__socket, socket)
- stub_warning (socket)
|