Skip to content
Snippets Groups Projects
Commit 106dcc2d authored by Brian Gavin's avatar Brian Gavin
Browse files

Add strsignal(3) to unix

This does not add sys_siglist because the docs specify that the function
should be used instead, whenever possible.
parent 8764410c
No related branches found
No related tags found
No related merge requests found
......@@ -538,6 +538,7 @@ extern "C" {
pub fn strerror(n: c_int) -> *mut c_char;
pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t;
pub fn strsignal(sig: c_int) -> *mut c_char;
pub fn wcslen(buf: *const wchar_t) -> size_t;
pub fn wcstombs(
dest: *mut c_char,
......
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