musl: fix linkage of libc

I messed up the logic of the cfg during my rebase of #163 :sweat_smile:
diff --git a/src/unix/mod.rs b/src/unix/mod.rs
index b7882db..fb3f270 100644
--- a/src/unix/mod.rs
+++ b/src/unix/mod.rs
@@ -135,7 +135,7 @@
     if #[cfg(not(stdbuild))] {
         // cargo build, don't pull in anything extra as the libstd  dep
         // already pulls in all libs.
-    } else if #[cfg(target_env = "musl", not(target_arch = "mips"))] {
+    } else if #[cfg(all(target_env = "musl", not(target_arch = "mips")))] {
         #[link(name = "c", kind = "static")]
         extern {}
     } else if #[cfg(target_os = "emscripten")] {