diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-02-10 09:50:13 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-02-10 09:50:13 +0000 |
commit | ca2f4b2b936c0af53b8d5bc5fb98b66b6755cc7e (patch) | |
tree | 3d67d1a49956183a30fb206ed1db144f536cfbc5 /lib/libcrypto/evp | |
parent | 2a433f86abe5cca232890ffb150e501cfdeb3d4c (diff) |
Remove unnecessary include of assert.h
Diffstat (limited to 'lib/libcrypto/evp')
-rw-r--r-- | lib/libcrypto/evp/e_aes.c | 3 | ||||
-rw-r--r-- | lib/libcrypto/evp/e_camellia.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/libcrypto/evp/e_aes.c b/lib/libcrypto/evp/e_aes.c index bb3b420a3b8..85591cfcb72 100644 --- a/lib/libcrypto/evp/e_aes.c +++ b/lib/libcrypto/evp/e_aes.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_aes.c,v 1.26 2014/10/22 13:02:04 jsing Exp $ */ +/* $OpenBSD: e_aes.c,v 1.27 2015/02/10 09:50:12 miod Exp $ */ /* ==================================================================== * Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. * @@ -49,7 +49,6 @@ * */ -#include <assert.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libcrypto/evp/e_camellia.c b/lib/libcrypto/evp/e_camellia.c index 4868c98c5df..e3424cfe94a 100644 --- a/lib/libcrypto/evp/e_camellia.c +++ b/lib/libcrypto/evp/e_camellia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_camellia.c,v 1.6 2014/07/10 22:45:57 jsing Exp $ */ +/* $OpenBSD: e_camellia.c,v 1.7 2015/02/10 09:50:12 miod Exp $ */ /* ==================================================================== * Copyright (c) 2006 The OpenSSL Project. All rights reserved. * @@ -53,7 +53,6 @@ * */ -#include <assert.h> #include <string.h> #include <openssl/opensslconf.h> |