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/authfd.c | |
parent | 6073ef8d8e4e88b190ebbbb462ac189bda16c160 (diff) |
move #include <string.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/authfd.c')
-rw-r--r-- | usr.bin/ssh/authfd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfd.c b/usr.bin/ssh/authfd.c index f8b7ed71fa4..52766bcd2dc 100644 --- a/usr.bin/ssh/authfd.c +++ b/usr.bin/ssh/authfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.77 2006/07/17 01:31:09 stevesk Exp $ */ +/* $OpenBSD: authfd.c,v 1.78 2006/07/22 20:48:22 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -44,6 +44,7 @@ #include <openssl/evp.h> #include <fcntl.h> +#include <string.h> #include <unistd.h> #include "ssh.h" |