diff options
author | 2006-07-26 13:57:17 +0000 | |
---|---|---|
committer | 2006-07-26 13:57:17 +0000 | |
commit | a121c4e0c9a0d3cd6b0038e9c8824c93d828457a (patch) | |
tree | 44bda8a4269b380c01db3bc3e51ae67d61317231 /usr.bin/ssh/ssh-keyscan.c | |
parent | wording/grammar tweaks; (diff) | |
download | wireguard-openbsd-a121c4e0c9a0d3cd6b0038e9c8824c93d828457a.tar.xz wireguard-openbsd-a121c4e0c9a0d3cd6b0038e9c8824c93d828457a.zip |
move #include <stdlib.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index e818af77dcd..8d439b19956 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keyscan.c,v 1.70 2006/07/25 02:59:21 stevesk Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.71 2006/07/26 13:57:17 stevesk Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -21,6 +21,7 @@ #include <netdb.h> #include <setjmp.h> #include <stdarg.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> |