diff options
author | Wynn Wolf Arbor | 2020-05-24 13:53:40 +0200 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-05-24 14:05:54 +0200 |
commit | 4c6c56dee8e9312ebfb43f6572168c27b4c4f764 (patch) | |
tree | 98376137f1e631683098b23fa4ad5b6fafaaaadd /slowcgi.c | |
parent | 0822df4d5f9d4313c3dbfb54e9e4c5624fb705a5 (diff) | |
download | slowcgi-4c6c56dee8e9312ebfb43f6572168c27b4c4f764.tar.gz |
Add queue.h from OpenBSD
The original file location in the OpenBSD tree
- sys/sys/queue.h
Diffstat (limited to '')
-rw-r--r-- | slowcgi.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -18,7 +18,6 @@ #include <sys/types.h> #include <sys/ioctl.h> -#include <sys/queue.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/time.h> @@ -39,6 +38,8 @@ #include <syslog.h> #include <unistd.h> +#include "queue.h" + #ifdef strlcpy #define HAVE_STRLCPY #else |