diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2014-11-19 11:37:53 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2014-11-19 11:37:53 +0000 |
commit | 82f43ed6e9ea6e4635175a4e03e2cdc3106f8df5 (patch) | |
tree | 45ca19cf0043a4aa963a56a325ec87090ee0a19b | |
parent | c5a07473a369fc9cbe84628227e7bf8af62accac (diff) |
include camellia.h using the public include path
-rw-r--r-- | lib/libcrypto/camellia/camellia.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/camellia/camellia.c b/lib/libcrypto/camellia/camellia.c index f001b9847da..cb577798a88 100644 --- a/lib/libcrypto/camellia/camellia.c +++ b/lib/libcrypto/camellia/camellia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: camellia.c,v 1.9 2014/11/13 20:01:58 miod Exp $ */ +/* $OpenBSD: camellia.c,v 1.10 2014/11/19 11:37:52 bcook Exp $ */ /* ==================================================================== * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . * ALL RIGHTS RESERVED. @@ -84,9 +84,9 @@ #include <stdlib.h> #include <string.h> +#include <openssl/camellia.h> #include <openssl/opensslconf.h> -#include "camellia.h" #include "cmll_locl.h" /* 32-bit rotations */ |