Revert __bounded__ hack in chacha-merged.c
authortb <tb@openbsd.org>
Wed, 5 Jun 2024 19:43:06 +0000 (19:43 +0000)
committertb <tb@openbsd.org>
Wed, 5 Jun 2024 19:43:06 +0000 (19:43 +0000)
Thanks to Viktor Szakats for figuring out that stdint.h was missing
in the portable tarballs.

lib/libcrypto/chacha/chacha-merged.c

index 3e17b93..debb776 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: chacha-merged.c,v 1.12 2024/06/01 17:56:44 tb Exp $ */
+/* $OpenBSD: chacha-merged.c,v 1.13 2024/06/05 19:43:06 tb Exp $ */
 /*
 chacha-merged.c version 20080118
 D. J. Bernstein
@@ -7,10 +7,6 @@ Public domain.
 
 #include <stdint.h>
 
-#if !defined(HAVE_ATTRIBUTE__BOUNDED__) && !defined(__OpenBSD__)
-#define __bounded__(x, y, z)
-#endif
-
 #define CHACHA_MINKEYLEN       16
 #define CHACHA_NONCELEN                8
 #define CHACHA_CTRLEN          8