瀏覽代碼

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

Andreas Kling 6 年之前
父節點
當前提交
f46a1377ac
共有 1 個文件被更改,包括 1 次插入0 次删除
  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)