std: time.rs should pass all args by "&&" to rustrt.

This commit is contained in:
Erick Tryzelaar 2012-04-05 12:23:37 -07:00
parent 851fde879d
commit 552677e598

View File

@ -22,7 +22,7 @@
// FIXME: The i64 values can be passed by-val when #2064 is fixed.
fn rust_gmtime(&&sec: i64, &&nsec: i32, &&result: tm);
fn rust_localtime(&&sec: i64, &&nsec: i32, &result: tm);
fn rust_localtime(&&sec: i64, &&nsec: i32, &&result: tm);
fn rust_timegm(&&tm: tm, &sec: i64);
fn rust_mktime(&&tm: tm, &sec: i64);
}