diff options
| author | bors <bors@rust-lang.org> | 2014-06-17 02:51:53 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-06-17 02:51:53 +0000 |
| commit | 09967665eaa5ca3d259f0f59ef26c8d236bf47a7 (patch) | |
| tree | ae450abfecbe1fdec6f583cf7cf743c35663a4c7 /src/liblibc/lib.rs | |
| parent | cc30abbcad282634fb99089eb9297e7cc4f26729 (diff) | |
| parent | b9adb6c717627ab6dcc9298b79a8d44cfe2fc616 (diff) | |
| download | rust-09967665eaa5ca3d259f0f59ef26c8d236bf47a7.tar.gz rust-09967665eaa5ca3d259f0f59ef26c8d236bf47a7.zip | |
auto merge of #14955 : alexcrichton/rust/rollup, r=alexcrichton
Diffstat (limited to 'src/liblibc/lib.rs')
| -rw-r--r-- | src/liblibc/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 8f245f1d5b4..05d9988a139 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -2592,7 +2592,7 @@ pub mod consts { pub static PROT_GROWSUP : c_int = 0x020000000; pub static MAP_TYPE : c_int = 0x000f; - pub static MAP_ANONONYMOUS : c_int = 0x0020; + pub static MAP_ANONYMOUS : c_int = 0x0020; pub static MAP_32BIT : c_int = 0x0040; pub static MAP_GROWSDOWN : c_int = 0x0100; pub static MAP_DENYWRITE : c_int = 0x0800; @@ -2615,7 +2615,7 @@ pub mod consts { pub static PROT_GROWSUP : c_int = 0x02000000; pub static MAP_TYPE : c_int = 0x000f; - pub static MAP_ANONONYMOUS : c_int = 0x0800; + pub static MAP_ANONYMOUS : c_int = 0x0800; pub static MAP_GROWSDOWN : c_int = 0x01000; pub static MAP_DENYWRITE : c_int = 0x02000; pub static MAP_EXECUTABLE : c_int = 0x04000; |
