summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2019-06-01 06:20:22 +0000
committernicm <nicm@openbsd.org>2019-06-01 06:20:22 +0000
commitfae03c8a20b291188e4bc6e7974bc8e55f25110d (patch)
tree8736d159d66d74d379882691ca1deb4aa14dfc31
parentRecognise Cortex-A65. (diff)
downloadwireguard-openbsd-fae03c8a20b291188e4bc6e7974bc8e55f25110d.tar.xz
wireguard-openbsd-fae03c8a20b291188e4bc6e7974bc8e55f25110d.zip
Need stdlib.h, from Ben Boeckel.
-rw-r--r--usr.bin/tmux/cmd-parse.y3
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>