]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/core-rt-smoke.rs
rustc: Temporarily inject libgreen with librustuv
[rust.git] / src / test / run-pass / core-rt-smoke.rs
index 10bd013b618bc4d28f6be9248f0b5eea29dcc357..6e3d9629da043b88befd8963236c86181a63171b 100644 (file)
@@ -13,8 +13,8 @@
 // A simple test of starting the runtime manually
 
 #[start]
-fn start(argc: int, argv: **u8, crate_map: *u8) -> int {
-    do std::rt::start(argc, argv, crate_map) {
+fn start(argc: int, argv: **u8) -> int {
+    do std::rt::start(argc, argv) {
         info!("creating my own runtime is joy");
     }
 }