Browse Source

CSocket: Add missing <sys/un.h> include to fix host build.

Andreas Kling 6 years ago
parent
commit
f46a1377ac
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Libraries/LibCore/CSocket.cpp

+ 1 - 0
Libraries/LibCore/CSocket.cpp

@@ -9,6 +9,7 @@
 #include <unistd.h>
 #include <unistd.h>
 #include <fcntl.h>
 #include <fcntl.h>
 #include <sys/socket.h>
 #include <sys/socket.h>
+#include <sys/un.h>
 
 
 CSocket::CSocket(Type type, CObject* parent)
 CSocket::CSocket(Type type, CObject* parent)
     : CIODevice(parent)
     : CIODevice(parent)