summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/camellia
diff options
context:
space:
mode:
authortb <>2023-09-04 08:43:41 +0000
committertb <>2023-09-04 08:43:41 +0000
commit33b0f5cf9e5572bcf6800932c6a58e5e35485dbb (patch)
treec04b347af4e0103272728ab8c86e755b52286c84 /src/lib/libcrypto/camellia
parent38f721ec5f8fb3943b912728968c1049330060cd (diff)
downloadopenbsd-33b0f5cf9e5572bcf6800932c6a58e5e35485dbb.tar.gz
openbsd-33b0f5cf9e5572bcf6800932c6a58e5e35485dbb.tar.bz2
openbsd-33b0f5cf9e5572bcf6800932c6a58e5e35485dbb.zip
Make wp_local.h and cmll_local.h self-standing
Diffstat (limited to 'src/lib/libcrypto/camellia')
-rw-r--r--src/lib/libcrypto/camellia/cmll_ecb.c5
-rw-r--r--src/lib/libcrypto/camellia/cmll_local.h4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libcrypto/camellia/cmll_ecb.c b/src/lib/libcrypto/camellia/cmll_ecb.c
index edac99023b..0575d29e29 100644
--- a/src/lib/libcrypto/camellia/cmll_ecb.c
+++ b/src/lib/libcrypto/camellia/cmll_ecb.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cmll_ecb.c,v 1.6 2023/09/04 08:36:48 robert Exp $ */ 1/* $OpenBSD: cmll_ecb.c,v 1.7 2023/09/04 08:43:41 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2006 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -49,9 +49,8 @@
49 * 49 *
50 */ 50 */
51 51
52#include <sys/types.h>
53
54#include <openssl/camellia.h> 52#include <openssl/camellia.h>
53
55#include "cmll_local.h" 54#include "cmll_local.h"
56 55
57void 56void
diff --git a/src/lib/libcrypto/camellia/cmll_local.h b/src/lib/libcrypto/camellia/cmll_local.h
index ed9807c069..831625e776 100644
--- a/src/lib/libcrypto/camellia/cmll_local.h
+++ b/src/lib/libcrypto/camellia/cmll_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: cmll_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */ 1/* $OpenBSD: cmll_local.h,v 1.3 2023/09/04 08:43:41 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . 3 * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) .
4 * ALL RIGHTS RESERVED. 4 * ALL RIGHTS RESERVED.
@@ -68,6 +68,8 @@
68#ifndef HEADER_CAMELLIA_LOCAL_H 68#ifndef HEADER_CAMELLIA_LOCAL_H
69#define HEADER_CAMELLIA_LOCAL_H 69#define HEADER_CAMELLIA_LOCAL_H
70 70
71#include <sys/types.h>
72
71__BEGIN_HIDDEN_DECLS 73__BEGIN_HIDDEN_DECLS
72 74
73typedef unsigned int u32; 75typedef unsigned int u32;