mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
18 lines
478 B
D
18 lines
478 B
D
/**
|
|
* C's <stdlib.h>
|
|
* D Programming Language runtime library
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCStdlib
|
|
*/
|
|
|
|
|
|
module std.c.stdlib;
|
|
|
|
public import core.stdc.stdlib;
|
|
|
|
extern (C):
|
|
|
|
int setenv(const char*, const char*, int); /// extension to ISO C standard, not available on all platforms
|
|
int unsetenv(const char*); /// extension to ISO C standard, not available on all platforms
|