unbreak build with llvm-16 by including sys/types.h for __BEGIN_HIDDEN_DECLS
authorrobert <robert@openbsd.org>
Mon, 4 Sep 2023 08:36:48 +0000 (08:36 +0000)
committerrobert <robert@openbsd.org>
Mon, 4 Sep 2023 08:36:48 +0000 (08:36 +0000)
/usr/src/lib/libcrypto/whrlpool/wp_local.h:5:1: error: unknown type name '__BEGIN_HIDDEN_DECLS'

ok tb@

lib/libcrypto/camellia/cmll_ecb.c
lib/libcrypto/whrlpool/wp_dgst.c

index b47ece7..edac990 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmll_ecb.c,v 1.5 2022/11/26 16:08:51 tb Exp $ */
+/* $OpenBSD: cmll_ecb.c,v 1.6 2023/09/04 08:36:48 robert Exp $ */
 /* ====================================================================
  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
  *
@@ -49,6 +49,8 @@
  *
  */
 
+#include <sys/types.h>
+
 #include <openssl/camellia.h>
 #include "cmll_local.h"
 
index fd074c1..282679e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: wp_dgst.c,v 1.5 2022/11/26 16:08:54 tb Exp $ */
+/* $OpenBSD: wp_dgst.c,v 1.6 2023/09/04 08:36:48 robert Exp $ */
 /**
  * The Whirlpool hashing function.
  *
@@ -52,6 +52,8 @@
  * input. This is done for performance.
  */
 
+#include <sys/types.h>
+
 #include "wp_local.h"
 #include <openssl/crypto.h>
 #include <string.h>