summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/cipher-ctr.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-03 03:34:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-03 03:34:43 +0000
commit6a841a89e8143678d8b0bb3a7506a55e69e91cf5 (patch)
tree5f1332f81b08861f309a3b01c3ba9e835be55dbc /usr.bin/ssh/cipher-ctr.c
parent4ca59a2a0eaecec3c6b29af7c2d68ac8732918db (diff)
almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk makes the pain stop in one easy step
Diffstat (limited to 'usr.bin/ssh/cipher-ctr.c')
-rw-r--r--usr.bin/ssh/cipher-ctr.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ssh/cipher-ctr.c b/usr.bin/ssh/cipher-ctr.c
index af620305f7d..a067ff890e9 100644
--- a/usr.bin/ssh/cipher-ctr.c
+++ b/usr.bin/ssh/cipher-ctr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cipher-ctr.c,v 1.9 2006/07/22 20:48:22 stevesk Exp $ */
+/* $OpenBSD: cipher-ctr.c,v 1.10 2006/08/03 03:34:42 deraadt Exp $ */
/*
* Copyright (c) 2003 Markus Friedl <markus@openbsd.org>
*
@@ -14,15 +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"
+
+#include <sys/types.h>
#include <string.h>
#include <openssl/evp.h>
#include <openssl/aes.h>
-#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);