summaryrefslogtreecommitdiff
path: root/openpcd/firmware/include/sys/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'openpcd/firmware/include/sys/types.h')
-rw-r--r--openpcd/firmware/include/sys/types.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/openpcd/firmware/include/sys/types.h b/openpcd/firmware/include/sys/types.h
new file mode 100644
index 0000000..f17ffe5
--- /dev/null
+++ b/openpcd/firmware/include/sys/types.h
@@ -0,0 +1,14 @@
+#ifndef _TYPES_H
+#define _TYPES_H
+
+typedef unsigned char u_int8_t;
+typedef unsigned short u_int16_t;
+typedef unsigned int u_int32_t;
+typedef unsigned long long u_int64_t;
+
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed int int32_t;
+typedef signed long long int64_t;
+
+#endif
personal git repositories of Harald Welte. Your mileage may vary