summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_types.h
diff options
context:
space:
mode:
authorLutz Helwing <lutz_helwing@mentor.com>2015-07-13 16:06:09 +0200
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2015-07-21 12:48:00 +0200
commit199ff0e7f736d848a7e01a12f04ddb21ecf36d74 (patch)
treeb4b2bfe34512eada3f44211c8d015051d92f99ab /include/dlt/dlt_types.h
parent7f9b53d0f36eec2f257c4f54e023c086b6317b78 (diff)
downloadDLT-daemon-199ff0e7f736d848a7e01a12f04ddb21ecf36d74.tar.gz
Replaced all tabs with spaces in all files in include folder
Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
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