mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
16 lines
533 B
D
16 lines
533 B
D
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/**
|
|
* $(RED Deprecated. Use $(D core.stdc.stdlib) or $(D core.sys.posix.stdlib)
|
|
* instead. This module will be removed in June 2017.)
|
|
*
|
|
* C's <stdlib.h>
|
|
* D Programming Language runtime library
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
*/
|
|
deprecated("Import core.stdc.stdlib or core.sys.posix.stdlib instead")
|
|
module std.c.stdlib;
|
|
|
|
public import core.stdc.stdlib;
|
|
version(Posix) public import core.sys.posix.stdlib: setenv, unsetenv;
|