blob: 2e91fb3e0a8b7f315bdcf1bae6fd40cfb641dea1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _SYS_SOCKET_H
#include <socket/sys/socket.h>
/* Now define the internal interfaces. */
extern int __socket (int __domain, int __type, int __protocol);
/* Return a socket of any type. The socket can be used in subsequent
ioctl calls to talk to the kernel. */
extern int __opensock (void) internal_function;
#endif
|