]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/unstable/lang.rs
Merge remote-tracking branch 'brson/io'
[rust.git] / src / libcore / unstable / lang.rs
index cb3f399f5919ae4fbd774a033b06be4a19fc7e88..d9870f522890a991c7abdbf95e9ae2608e26ee81 100644 (file)
@@ -91,7 +91,7 @@ pub unsafe fn exchange_free(ptr: *c_char) {
 #[lang="malloc"]
 #[inline(always)]
 #[cfg(stage0)] // For some reason this isn't working on windows in stage0
-pub unsafe fn local_malloc(td: *c_char, size: uintptr_t) -> *c_char { 
+pub unsafe fn local_malloc(td: *c_char, size: uintptr_t) -> *c_char {
     return rustrt::rust_upcall_malloc_noswitch(td, size);
 }