mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 15:10:46 +03:00

This includes deprecating std.c.*, which apparently was marked as scheduled for deprecation in 2.068 but never actually deprecated (though it looks like it was previously removed from the documentation build, since it doesn't show up on dlang.org).
17 lines
693 B
D
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.sys.socket : AF_APPLETALK, AF_IPX, SOCK_RDM, MSG_NOSIGNAL;
|
|
public import core.sys.posix.netinet.in_ : IPPROTO_IGMP, IPPROTO_GGP,
|
|
IPPROTO_PUP, IPPROTO_IDP, IPPROTO_ND,
|
|
IPPROTO_MAX, INADDR_LOOPBACK, INADDR_NONE;
|