summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/auth-options.c
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2019-09-06 04:53:28 +0000
committerDamien Miller <djm@cvs.openbsd.org>2019-09-06 04:53:28 +0000
commit464e83cf71ceb9a52efd400f06dba6ae6b47401b (patch)
tree34969c6bc79e30d747551ba0e644493e514ac895 /usr.bin/ssh/auth-options.c
parentbb190f41db2e37f97c78bd6cccc26fea2e3a8b3b (diff)
lots of things were relying on libcrypto headers to transitively
include various system headers (mostly stdlib.h); include them explicitly
Diffstat (limited to 'usr.bin/ssh/auth-options.c')
-rw-r--r--usr.bin/ssh/auth-options.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth-options.c b/usr.bin/ssh/auth-options.c
index c1fb6cba4e1..2aa48074ebf 100644
--- a/usr.bin/ssh/auth-options.c
+++ b/usr.bin/ssh/auth-options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth-options.c,v 1.87 2019/09/03 08:32:11 djm Exp $ */
+/* $OpenBSD: auth-options.c,v 1.88 2019/09/06 04:53:27 djm Exp $ */
/*
* Copyright (c) 2018 Damien Miller <djm@mindrot.org>
*
@@ -18,6 +18,7 @@
#include <sys/types.h>
#include <sys/queue.h>
+#include <stdlib.h>
#include <netdb.h>
#include <pwd.h>
#include <string.h>