phobos/std/c/linux/pthread.d
Martin Nowak f4672d51f9 remove import of deprecated std.c.linux.linux
- was only privately imported anyhow
2017-07-08 20:33:50 +02:00

17 lines
518 B
D

// @@@DEPRECATED_2017-06@@@
/* Written by Walter Bright, Christopher E. Miller, and many others.
* www.digitalmars.com
* Placed into public domain.
*/
/++
$(RED Deprecated. Use $(core.sys.posix.pthread) or the appropriate
$(D core.sys.posix.*) modules instead. This module will be removed in
June 2017.)
+/
deprecated("Import core.sys.posix.pthread or the appropriate core.sys.posix.* modules instead")
module std.c.linux.pthread;
version (linux):
public import core.sys.posix.pthread;