diff options
author | sterin <github@bsterin.com> | 2018-03-30 00:48:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-30 00:48:27 -0700 |
commit | 4a39f3265f2db7d22bfc9915c87d16f3837f5c85 (patch) | |
tree | 2b3c89f78d16e1c735aa033a9d990935d8663135 /src/misc/util/utilBridge.c | |
parent | d879336fad13d7cba08d658375b2a44c6b4cb6fa (diff) | |
parent | 8d472cd55e49c62bce489b9a2dcfcfa3a7759cf2 (diff) | |
download | abc-4a39f3265f2db7d22bfc9915c87d16f3837f5c85.tar.gz abc-4a39f3265f2db7d22bfc9915c87d16f3837f5c85.tar.bz2 abc-4a39f3265f2db7d22bfc9915c87d16f3837f5c85.zip |
Merge pull request #2 from rqou/master
Use C99 header stdint.h to determine platform-dependent types and macros
Diffstat (limited to 'src/misc/util/utilBridge.c')
-rw-r--r-- | src/misc/util/utilBridge.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/misc/util/utilBridge.c b/src/misc/util/utilBridge.c index 70ea8ec7..f988b656 100644 --- a/src/misc/util/utilBridge.c +++ b/src/misc/util/utilBridge.c @@ -22,6 +22,9 @@ #include <string.h> #include <stdlib.h> #include <assert.h> + +#include <misc/util/abc_global.h> + #if defined(LIN) || defined(LIN64) #include <unistd.h> #endif |