core: Add implementation of real_args for FreeBSD

This commit is contained in:
Brian Anderson 2012-10-02 10:31:37 -07:00
parent 6365adaa61
commit 4d30b34673
1 changed files with 5 additions and 0 deletions

View File

@ -754,6 +754,11 @@ fn real_args() -> ~[~str] {
fail // Needs implementing.
}
#[cfg(target_os = "freebsd")]
fn real_args() -> ~[~str] {
fail // Needs implementing.
}
#[cfg(windows)]
fn real_args() -> ~[~str] {
fail // Needs implementing.