stdbuild conditional change

Building with cargo doesn't necessarily imply this isn't a `stdbuild` libc. This logic is more consistent with the rest of the repo.
diff --git a/src/unix/mod.rs b/src/unix/mod.rs
index fb42ccb..4af99a6 100644
--- a/src/unix/mod.rs
+++ b/src/unix/mod.rs
@@ -132,7 +132,7 @@
 pub const IF_NAMESIZE: ::size_t = 16;
 
 cfg_if! {
-    if #[cfg(feature = "default")] {
+    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")] {