Skip to content
Snippets Groups Projects
Commit 79123321 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Mark sys_time functions no_mangle

parent 3e354aed
No related branches found
No related tags found
No related merge requests found
......@@ -23,10 +23,12 @@ pub struct fd_set {
pub fds_bits: [c_long; 16usize],
}
#[no_mangle]
pub extern "C" fn getitimer(which: c_int, value: *mut itimerval) -> c_int {
unimplemented!();
}
#[no_mangle]
pub extern "C" fn setitimer(
which: c_int,
value: *const itimerval,
......@@ -35,10 +37,12 @@ pub extern "C" fn setitimer(
unimplemented!();
}
#[no_mangle]
pub extern "C" fn gettimeofday(tp: *mut timeval, tzp: *const c_void) -> c_int {
unimplemented!();
}
#[no_mangle]
pub extern "C" fn select(
nfds: c_int,
readfds: *mut fd_set,
......@@ -49,6 +53,7 @@ pub extern "C" fn select(
unimplemented!();
}
#[no_mangle]
pub extern "C" fn utimes(path: *const c_char, times: [timeval; 2]) -> c_int {
unimplemented!();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment