diff options
author | Jose Fonseca <[email protected]> | 2017-03-13 12:23:11 +0000 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2017-03-13 12:23:11 +0000 |
commit | b822d9c2b72f721577d3c7adcfdc2abc9eb42d3f (patch) | |
tree | be3ffbe18358d556b42503938b7e693e7e127e0b /src/util | |
parent | e8eeb759b78ecf33d1d01e8a8beb45455251f678 (diff) |
util/u_thread.h: Include stdint.h for int64_t definition.
Fixes MinGW build. Trivial.
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/u_thread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/u_thread.h b/src/util/u_thread.h index 7411140fcb0..8eab3a5b94a 100644 --- a/src/util/u_thread.h +++ b/src/util/u_thread.h @@ -27,6 +27,8 @@ #ifndef U_THREAD_H_ #define U_THREAD_H_ +#include <stdint.h> + #include "c11/threads.h" #ifdef HAVE_PTHREAD |