libcore: Fix a typo

This commit is contained in:
Erick Tryzelaar 2012-11-09 19:38:15 -05:00 committed by Graydon Hoare
parent 9539724e8b
commit 079c768df5

@ -994,7 +994,7 @@ pub mod funcs {
fn chmod(path: *c_char, mode: mode_t) -> c_int;
fn fchmod(fd: c_int, mode: mode_t) -> c_int;
fn mkdir(path: *c_char, mode: mode_t) -> c_int;
fn mkfifo(ath: *c_char, mode: mode_t) -> c_int;
fn mkfifo(path: *c_char, mode: mode_t) -> c_int;
}
#[nolink]