diff options
| author | Marijn Haverbeke <[email protected]> | 2011-05-06 22:13:13 +0200 |
|---|---|---|
| committer | Marijn Haverbeke <[email protected]> | 2011-05-06 22:51:19 +0200 |
| commit | a3ec0b1f643d00b9418e4884bd7caa07bf052201 (patch) | |
| tree | 82000510ac9c9cf3f0c7cf4ae5f3c6b123b559cb /src/lib/GenericOS.rs | |
| parent | Register new snapshots. (diff) | |
| download | rust-a3ec0b1f643d00b9418e4884bd7caa07bf052201.tar.xz rust-a3ec0b1f643d00b9418e4884bd7caa07bf052201.zip | |
Rename std modules to be camelcased
(Have fun mergining your stuff with this.)
Diffstat (limited to 'src/lib/GenericOS.rs')
| -rw-r--r-- | src/lib/GenericOS.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/GenericOS.rs b/src/lib/GenericOS.rs index 2d375652..c60fa2b8 100644 --- a/src/lib/GenericOS.rs +++ b/src/lib/GenericOS.rs @@ -1,4 +1,4 @@ fn getenv(str n) -> str { - ret _str.str_from_cstr(os.libc.getenv(_str.buf(n))); + ret Str.str_from_cstr(OS.libc.getenv(Str.buf(n))); } |