Skip to content

Commit 4d30b34

Browse files
committed
core: Add implementation of real_args for FreeBSD
1 parent 6365ada commit 4d30b34

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/libcore/os.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,11 @@ fn real_args() -> ~[~str] {
754754
fail // Needs implementing.
755755
}
756756

757+
#[cfg(target_os = "freebsd")]
758+
fn real_args() -> ~[~str] {
759+
fail // Needs implementing.
760+
}
761+
757762
#[cfg(windows)]
758763
fn real_args() -> ~[~str] {
759764
fail // Needs implementing.

0 commit comments

Comments
 (0)