summaryrefslogtreecommitdiff
path: root/include/sys/un.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sys/un.h')
-rw-r--r--include/sys/un.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/sys/un.h b/include/sys/un.h
new file mode 100644
index 00000000..769dac6b
--- /dev/null
+++ b/include/sys/un.h
@@ -0,0 +1,13 @@
+#ifndef _SYS_UN_H
+#define _SYS_UN_H
+
+#define __NEED_sa_family_t
+#include <bits/alltypes.h>
+
+struct sockaddr_un
+{
+ sa_family_t sun_family;
+ char sun_path[108];
+};
+
+#endif