summaryrefslogtreecommitdiffstats
path: root/modules/fdlibm/patches/05_include_stdint_h_in_math_private_h.patch
blob: aec7d947380d3b7510bfb52cf66e7db45dcf5ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/math_private.h b/math_private.h
--- a/math_private.h
+++ b/math_private.h
@@ -12,16 +12,17 @@
 /*
  * from: @(#)fdlibm.h 5.1 93/09/24
  * $FreeBSD$
  */
 
 #ifndef _MATH_PRIVATE_H_
 #define	_MATH_PRIVATE_H_
 
+#include <stdint.h>
 #include <sys/types.h>
 #include <machine/endian.h>
 
 #include "fdlibm.h"
 
 /*
  * The original fdlibm code used statements like:
  *	n0 = ((*(int*)&one)>>29)^1;		* index of high word *