stdlib: Add getenv(3) to win32_os.

This commit is contained in:
Patrick Walton 2011-04-28 14:34:50 -07:00
parent ffbbf42edd
commit 5f60937318

View file

@ -19,6 +19,8 @@ native mod libc = "msvcrt.dll" {
fn fseek(FILE f, int offset, int whence) -> int;
fn ftell(FILE f) -> int;
fn getenv(sbuf n) -> sbuf;
fn _pipe(vbuf fds, uint size, int mode) -> int;
}