Fixed headers for FreeBSD

This commit is contained in:
Alexander Sieg 2020-04-12 14:50:59 +02:00
parent 6bac1bd257
commit 6d17515646
7 changed files with 28 additions and 0 deletions

View file

@ -8,7 +8,11 @@
#include <sys/socket.h>
#include <sys/epoll.h>
#if __linux__
#include <linux/un.h>
#elif __FreeBSD__
#include <sys/un.h>
#endif
#include <tllist.h>