aboutsummaryrefslogtreecommitdiffstats
path: root/src/deftypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/deftypes.h')
-rw-r--r--src/deftypes.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/deftypes.h b/src/deftypes.h
new file mode 100644
index 0000000..ec91499
--- /dev/null
+++ b/src/deftypes.h
@@ -0,0 +1,21 @@
+
+#ifndef _DEFTYPESH_INCLUDED
+#define _DEFTYPESH_INCLUDED
+
+#define uint8 __uint8_t
+#define uint16 __uint16_t
+#define uint32 __uint32_t
+#define uint64 __uint64_t
+#define uint128 __uint128_t
+
+#define int8 __int8_t
+#define int16 __int16_t
+#define int32 __int32_t
+#define int64 __int64_t
+#define int128 __int128_t
+
+#define uchar __u_char
+
+#define ulong __u_long
+
+#endif \ No newline at end of file