Make wp_local.h and cmll_local.h self-standing
authortb <tb@openbsd.org>
Mon, 4 Sep 2023 08:43:41 +0000 (08:43 +0000)
committertb <tb@openbsd.org>
Mon, 4 Sep 2023 08:43:41 +0000 (08:43 +0000)
lib/libcrypto/camellia/cmll_ecb.c
lib/libcrypto/camellia/cmll_local.h
lib/libcrypto/whrlpool/wp_dgst.c
lib/libcrypto/whrlpool/wp_local.h

index edac990..0575d29 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmll_ecb.c,v 1.6 2023/09/04 08:36:48 robert Exp $ */
+/* $OpenBSD: cmll_ecb.c,v 1.7 2023/09/04 08:43:41 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
  *
@@ -49,9 +49,8 @@
  *
  */
 
-#include <sys/types.h>
-
 #include <openssl/camellia.h>
+
 #include "cmll_local.h"
 
 void
index ed9807c..831625e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmll_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */
+/* $OpenBSD: cmll_local.h,v 1.3 2023/09/04 08:43:41 tb Exp $ */
 /* ====================================================================
  * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . 
  * ALL RIGHTS RESERVED.
@@ -68,6 +68,8 @@
 #ifndef HEADER_CAMELLIA_LOCAL_H
 #define HEADER_CAMELLIA_LOCAL_H
 
+#include <sys/types.h>
+
 __BEGIN_HIDDEN_DECLS
 
 typedef unsigned int  u32;
index 282679e..71fd79c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: wp_dgst.c,v 1.6 2023/09/04 08:36:48 robert Exp $ */
+/* $OpenBSD: wp_dgst.c,v 1.7 2023/09/04 08:43:41 tb Exp $ */
 /**
  * The Whirlpool hashing function.
  *
  * input. This is done for performance.
  */
 
-#include <sys/types.h>
+#include <string.h>
 
-#include "wp_local.h"
 #include <openssl/crypto.h>
-#include <string.h>
+
+#include "wp_local.h"
 
 int WHIRLPOOL_Init(WHIRLPOOL_CTX *c)
        {
index 2d3bc9c..892dce2 100644 (file)
@@ -1,4 +1,6 @@
-/* $OpenBSD: wp_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */
+/* $OpenBSD: wp_local.h,v 1.2 2023/09/04 08:43:41 tb Exp $ */
+
+#include <sys/types.h>
 
 #include <openssl/whrlpool.h>