diff options
author | 2019-06-01 06:20:22 +0000 | |
---|---|---|
committer | 2019-06-01 06:20:22 +0000 | |
commit | fae03c8a20b291188e4bc6e7974bc8e55f25110d (patch) | |
tree | 8736d159d66d74d379882691ca1deb4aa14dfc31 | |
parent | Recognise Cortex-A65. (diff) | |
download | wireguard-openbsd-fae03c8a20b291188e4bc6e7974bc8e55f25110d.tar.xz wireguard-openbsd-fae03c8a20b291188e4bc6e7974bc8e55f25110d.zip |
Need stdlib.h, from Ben Boeckel.
-rw-r--r-- | usr.bin/tmux/cmd-parse.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-parse.y b/usr.bin/tmux/cmd-parse.y index 2733471e16b..4f0e2ca4bec 100644 --- a/usr.bin/tmux/cmd-parse.y +++ b/usr.bin/tmux/cmd-parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-parse.y,v 1.11 2019/05/31 11:34:09 nicm Exp $ */ +/* $OpenBSD: cmd-parse.y,v 1.12 2019/06/01 06:20:22 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -23,6 +23,7 @@ #include <ctype.h> #include <errno.h> #include <pwd.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> |