phobos/std/c/freebsd/socket.d
Vladimir Panteleev d0b9555a06
Revert "Sort selective imports"
This reverts commit 998ad51fd7.
2017-06-13 17:51:52 +00:00

17 lines
693 B
D

// Written in the D programming language.
// @@@DEPRECATED_2017-06@@@
/++
$(RED Deprecated. Use the appropriate $(D core.sys.posix.*) modules instead.
This module will be removed in June 2017.)
+/
deprecated("Import the appropriate core.sys.posix.* modules instead")
module std.c.freebsd.socket;
version (FreeBSD):
public import core.sys.posix.netdb;
public import core.sys.posix.netinet.in_ : IPPROTO_IGMP, IPPROTO_GGP,
IPPROTO_PUP, IPPROTO_IDP, IPPROTO_ND,
IPPROTO_MAX, INADDR_LOOPBACK, INADDR_NONE;
public import core.sys.posix.sys.socket : AF_APPLETALK, AF_IPX, SOCK_RDM, MSG_NOSIGNAL;