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

This commit is contained in:
Andreas Kling
2019-07-25 11:49:08 +02:00
parent 16bcaf08a3
commit f46a1377ac

View File

@@ -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)