diff options
author | nicm <nicm> | 2020-05-08 14:15:11 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-08 14:15:11 +0000 |
commit | aa7dccf8e12c33223717d10551567959a9f22b97 (patch) | |
tree | 5ecae5e12c04b0788ef2fda820553bc889fec34d | |
parent | 048f1ff18adda4a3b7a5771924defea052cd7884 (diff) | |
download | rtmux-aa7dccf8e12c33223717d10551567959a9f22b97.tar.gz rtmux-aa7dccf8e12c33223717d10551567959a9f22b97.tar.bz2 rtmux-aa7dccf8e12c33223717d10551567959a9f22b97.zip |
imsg.h needs uio.h, pointed out by deraadt
-rw-r--r-- | client.c | 1 | ||||
-rw-r--r-- | file.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -18,6 +18,7 @@ #include <sys/types.h> #include <sys/socket.h> +#include <sys/uio.h> #include <sys/un.h> #include <sys/wait.h> @@ -18,6 +18,7 @@ #include <sys/types.h> #include <sys/queue.h> +#include <sys/uio.h> #include <errno.h> #include <fcntl.h> |