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
Notes: sideshowbarker 2024-07-19 13:03:57 +09:00

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)