diff options
author | Davor Ocelic <docelic@crystallabs.io> | 2019-12-10 18:13:28 +0100 |
---|---|---|
committer | Davor Ocelic <docelic@crystallabs.io> | 2019-12-10 18:13:28 +0100 |
commit | 26bc0b3ba3990535034a296fc758759d6ae99f07 (patch) | |
tree | 1c1176b62f706101dff9e48baa0d41f243f08aa7 | |
parent | 6a0d081a8c2a29ce0c0ac32c1e1ffbf7fe674f99 (diff) |
Unix sockets: use platform-agnostic include file
-rw-r--r-- | src/c/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/http.c b/src/c/http.c index d4927dc4..de2f1376 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -11,7 +11,7 @@ #include <unistd.h> #include <signal.h> #include <stdarg.h> -#include <linux/un.h> +#include <sys/un.h> #include <pthread.h> |