diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-22 20:48:24 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-22 20:48:24 +0000 |
commit | bcdacbe26d8de9891dc5bf9cd66c8f82d107cf02 (patch) | |
tree | a10a3892d873fbacbc15f8d9b70ced1608e1f89a /usr.bin/ssh/sshlogin.c | |
parent | 6073ef8d8e4e88b190ebbbb462ac189bda16c160 (diff) |
move #include <string.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/sshlogin.c')
-rw-r--r-- | usr.bin/ssh/sshlogin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshlogin.c b/usr.bin/ssh/sshlogin.c index 395c2ba1cb8..ef33b3a43ef 100644 --- a/usr.bin/ssh/sshlogin.c +++ b/usr.bin/ssh/sshlogin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshlogin.c,v 1.21 2006/07/22 19:08:54 stevesk Exp $ */ +/* $OpenBSD: sshlogin.c,v 1.22 2006/07/22 20:48:23 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -45,6 +45,7 @@ #include <errno.h> #include <fcntl.h> +#include <string.h> #include <time.h> #include <unistd.h> #include <util.h> |