Ver código fonte

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

Andreas Kling 6 anos atrás
pai
commit
f46a1377ac
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      Libraries/LibCore/CSocket.cpp

+ 1 - 0
Libraries/LibCore/CSocket.cpp

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