Restructure libs source to support multi platform
[fw/stlink] / example / libs_stm / inc / base / stdint.h
diff --git a/example/libs_stm/inc/base/stdint.h b/example/libs_stm/inc/base/stdint.h
new file mode 100644 (file)
index 0000000..00d4aaf
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef STDINT_H_INCLUDED
+# define STDINT_H_INCLUDED
+
+
+typedef char int8_t;
+typedef short int16_t;
+typedef int int32_t;
+typedef long long int64_t;
+
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+typedef unsigned long long uint64_t;
+
+
+#endif /* ! STDINT_H_INCLUDED */