initial version of mips (o32) port, based on work by Richard Pennington (rdp)
[musl] / arch / mips / bits / socket.h
diff --git a/arch/mips/bits/socket.h b/arch/mips/bits/socket.h
new file mode 100644 (file)
index 0000000..c464ed9
--- /dev/null
@@ -0,0 +1,10 @@
+struct msghdr
+{
+       void *msg_name;
+       socklen_t msg_namelen;
+       struct iovec *msg_iov;
+       int msg_iovlen;
+       void *msg_control;
+       socklen_t msg_controllen;
+       int msg_flags;
+};