blob: dadd866613d73b006ba239e3e81da0f77d015376 (
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) __THROW;
/* 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
|