diff --git a/libc-test/build.rs b/libc-test/build.rs index d28fbbc5488b40f0b875ce679488f8400b926334..680136170f83f69c00114569fd896f1c152f5bb5 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -2671,7 +2671,8 @@ fn test_linux(target: &str) { "getrlimit" | "getrlimit64" | // non-int in 1st arg "setrlimit" | "setrlimit64" | // non-int in 1st arg - "prlimit" | "prlimit64" | // non-int in 2nd arg + "prlimit" | "prlimit64" // non-int in 2nd arg + => true, // int vs uint. Sorry musl, your prototype declarations are "correct" in the sense that // they match the interface defined by Linux verbatim, but they conflict with other