Include <stdint.h> in the bytestring .c files
authortb <tb@openbsd.org>
Sat, 25 May 2024 15:12:47 +0000 (15:12 +0000)
committertb <tb@openbsd.org>
Sat, 25 May 2024 15:12:47 +0000 (15:12 +0000)
They currently depend on bytestring.h pulling that in.

discussed with jsing

lib/libcrypto/bytestring/bs_ber.c
lib/libcrypto/bytestring/bs_cbb.c
lib/libcrypto/bytestring/bs_cbs.c

index c9779c8..eb1eed6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bs_ber.c,v 1.2 2021/12/15 18:02:39 jsing Exp $        */
+/*     $OpenBSD: bs_ber.c,v 1.3 2024/05/25 15:12:47 tb Exp $   */
 /*
  * Copyright (c) 2014, Google Inc.
  *
@@ -15,6 +15,7 @@
  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stdint.h>
 #include <string.h>
 
 #include "bytestring.h"
index c8b6f48..3c66a28 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bs_cbb.c,v 1.4 2022/07/07 17:16:05 tb Exp $   */
+/*     $OpenBSD: bs_cbb.c,v 1.5 2024/05/25 15:12:47 tb Exp $   */
 /*
  * Copyright (c) 2014, Google Inc.
  *
@@ -15,6 +15,7 @@
  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
 
index e2bb54e..7852d78 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bs_cbs.c,v 1.2 2021/12/15 18:02:39 jsing Exp $        */
+/*     $OpenBSD: bs_cbs.c,v 1.3 2024/05/25 15:12:47 tb Exp $   */
 /*
  * Copyright (c) 2014, Google Inc.
  *
@@ -15,6 +15,7 @@
  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stdint.h>
 #include <stdlib.h>
 #include <string.h>