summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dlt/dlt_types.h')
-rwxr-xr-xinclude/dlt/dlt_types.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/dlt/dlt_types.h b/include/dlt/dlt_types.h
index f10963a..1e7c8e6 100755
--- a/include/dlt/dlt_types.h
+++ b/include/dlt/dlt_types.h
@@ -27,7 +27,7 @@
/*******************************************************************************
** **
-** SRC-MODULE: dlt_types.h **
+** SRC-MODULE: dlt_types.h **
** **
** TARGET : linux **
** **
@@ -60,22 +60,22 @@
#define DLT_TYPES_H
#ifdef _MSC_VER
- typedef __int64 int64_t;
- typedef __int32 int32_t;
- typedef __int16 int16_t;
- typedef __int8 int8_t;
+typedef __int64 int64_t;
+typedef __int32 int32_t;
+typedef __int16 int16_t;
+typedef __int8 int8_t;
- typedef unsigned __int64 uint64_t;
- typedef unsigned __int32 uint32_t;
- typedef unsigned __int16 uint16_t;
- typedef unsigned __int8 uint8_t;
+typedef unsigned __int64 uint64_t;
+typedef unsigned __int32 uint32_t;
+typedef unsigned __int16 uint16_t;
+typedef unsigned __int8 uint8_t;
- typedef int pid_t;
- typedef unsigned int speed_t;
+typedef int pid_t;
+typedef unsigned int speed_t;
- #define UINT16_MAX 0xFFFF
+#define UINT16_MAX 0xFFFF
- #include <varargs.h>
+#include <varargs.h>
#else
#include <stdint.h>
#endif