blob: bd6241cd8c2df1821f3bdc57913786bf39042a91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-src_lookup3.c,v 1.1 2020/08/15 01:02:42 tnn Exp $
Don't include stdint.h if it does not exist. Fixes PR#44770
--- src/lookup3.c.orig 2011-04-01 21:06:28.047391300 +0000
+++ src/lookup3.c
@@ -34,7 +34,9 @@
*/
/* -------------------------------------------------------------------- */
+#ifdef HAVE_STDINT_H
#include <stdint.h>
+#endif
#if defined(_JLU3_SELFTEST)
# define _JLU3_jlu32w 1
|