summaryrefslogtreecommitdiffstats
path: root/TOOLS/cygwin_inttypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/cygwin_inttypes.h')
-rw-r--r--TOOLS/cygwin_inttypes.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/TOOLS/cygwin_inttypes.h b/TOOLS/cygwin_inttypes.h
new file mode 100644
index 0000000000..25728c05e4
--- /dev/null
+++ b/TOOLS/cygwin_inttypes.h
@@ -0,0 +1,8 @@
+#ifndef _CYGWIN_INTTYPES_H
+#define _CYGWIN_INTTYPES_H
+#include <sys/types.h>
+typedef u_int8_t uint8_t;
+typedef u_int16_t uint16_t;
+typedef u_int32_t uint32_t;
+typedef u_int64_t uint64_t;
+#endif