summaryrefslogtreecommitdiff
path: root/src/porting.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/porting.h')
-rw-r--r--src/porting.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/porting.h b/src/porting.h
index 0062c11f3..184e1ab54 100644
--- a/src/porting.h
+++ b/src/porting.h
@@ -50,6 +50,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define strtoull(x, y, z) _strtoui64(x, y, z)
#else
#include <unistd.h>
+ #include <stdint.h> //for uintptr_t
#define ALIGNOF(x) __alignof__(x)
#define sleep_ms(x) usleep(x*1000)