Skip to content

Commit 69bb280

Browse files
authored
Another Windows ARM64 fix (#253)
* Another Windows ARM64 fix include stdint.h to be sure that uint64_t can be used. This header already had references to uint32_t, so I assumed it was safe to use those typedefs, but a compile error revealed it was not always. * fix munged whitespace
1 parent 3d4a902 commit 69bb280

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/aarch64_fpmath.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
* $FreeBSD: head/lib/libc/aarch64/_fpmath.h 281197 2015-04-07 09:52:14Z andrew $
2828
*/
2929

30+
#include <stdint.h>
31+
3032
union IEEEl2bits {
3133
long double e;
3234
struct {

0 commit comments

Comments
 (0)