=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/cipher-ctr.c,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -u -r1.6 -r1.6.2.1 --- src/usr.bin/ssh/Attic/cipher-ctr.c 2005/07/17 07:17:55 1.6 +++ src/usr.bin/ssh/Attic/cipher-ctr.c 2006/10/06 03:19:32 1.6.2.1 @@ -1,3 +1,4 @@ +/* $OpenBSD: cipher-ctr.c,v 1.6.2.1 2006/10/06 03:19:32 brad Exp $ */ /* * Copyright (c) 2003 Markus Friedl * @@ -13,14 +14,16 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "includes.h" -RCSID("$OpenBSD: cipher-ctr.c,v 1.6 2005/07/17 07:17:55 djm Exp $"); +#include + +#include + #include #include -#include "log.h" #include "xmalloc.h" +#include "log.h" const EVP_CIPHER *evp_aes_128_ctr(void); void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);