Unverified Commit 5f7b19b8 authored by Kenton Varda's avatar Kenton Varda Committed by GitHub

Merge pull request #588 from dcci/fbsd-fixes

Add missing headers to unbreak the build on FreeBSD/Clang.
parents 572c689d c8ac57c4
......@@ -39,7 +39,9 @@
#include <netdb.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#endif
namespace kj {
......
......@@ -41,6 +41,7 @@
#else
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/un.h>
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment