Merge toynet.h into toys.h: musl supports it and micromanaging uClibc config options isn't very interesting anymore.
diff --git a/toys.h b/toys.h
index caf9612..8450b80 100644
--- a/toys.h
+++ b/toys.h
@@ -55,6 +55,17 @@
 #include <wchar.h>
 #include <wctype.h>
 
+// Networking stuff
+
+#include <arpa/inet.h>
+#include <netdb.h>
+#include <net/if.h>
+#include <netinet/in.h>
+#include <netinet/tcp.h>
+#include <poll.h>
+#include <sys/socket.h>
+#include <sys/un.h>
+
 #include "lib/lib.h"
 #include "toys/e2fs.h"