diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-26 13:57:18 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-26 13:57:18 +0000 |
commit | 0e26b85fee4e0899350769101a17a980358fb7c1 (patch) | |
tree | a5d5ad3c1e84ec985a80b75a7180b7b95652e017 /usr.bin/ssh/ssh-keygen.c | |
parent | a2b7d443bbe095a0bc30618197900dfdbf4c4c19 (diff) |
move #include <stdlib.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index b8ca60d36f8..c932e33c898 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.151 2006/07/26 02:35:17 stevesk Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.152 2006/07/26 13:57:17 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -24,6 +24,7 @@ #include <errno.h> #include <fcntl.h> #include <pwd.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> |