Skip to content

Commit

Permalink
Another Windows ARM64 fix (#253)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jeremyd2019 authored Sep 11, 2021
1 parent 3d4a902 commit 69bb280
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/aarch64_fpmath.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* $FreeBSD: head/lib/libc/aarch64/_fpmath.h 281197 2015-04-07 09:52:14Z andrew $
*/

#include <stdint.h>

union IEEEl2bits {
long double e;
struct {
Expand Down

0 comments on commit 69bb280

Please sign in to comment.