Skip to content
Snippets Groups Projects
Commit 1a2f9639 authored by bors's avatar bors
Browse files

Auto merge of #855 - kallisti5:haiku-lutimes, r=alexcrichton

haiku: Add missing lutimes

* BeOS traditionally didn't have lutimes, however to make Haiku
  more compatible and easier to port for, we added an implementation
  of it.
parents a04e5527 f7d16bce
No related branches found
No related tags found
No related merge requests found
......@@ -1112,6 +1112,7 @@ extern {
addrlen: *mut ::socklen_t) -> ::ssize_t;
pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int;
pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
pub fn bind(socket: ::c_int, address: *const ::sockaddr,
......
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