diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2019-09-06 04:53:28 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2019-09-06 04:53:28 +0000 |
commit | 464e83cf71ceb9a52efd400f06dba6ae6b47401b (patch) | |
tree | 34969c6bc79e30d747551ba0e644493e514ac895 /usr.bin/ssh/auth-options.c | |
parent | bb190f41db2e37f97c78bd6cccc26fea2e3a8b3b (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.c | 3 |
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> |