summaryrefslogtreecommitdiffstats
path: root/main/common/stddefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/common/stddefs.h')
-rw-r--r--main/common/stddefs.h66
1 files changed, 33 insertions, 33 deletions
diff --git a/main/common/stddefs.h b/main/common/stddefs.h
index cef8fb9..4a50f01 100644
--- a/main/common/stddefs.h
+++ b/main/common/stddefs.h
@@ -1,7 +1,7 @@
/**************************************************************************
*
* Copyright (c) 2013 Alcatel-Lucent
- *
+ *
* Alcatel Lucent licenses this file to You under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. A copy of the License is contained the
@@ -18,7 +18,7 @@
*
**************************************************************************
*
- * stddefs.h:
+ * stddefs.h:
*
* Original author: Ed Sutter (ed.sutter@alcatel-lucent.com)
*
@@ -26,37 +26,37 @@
#ifndef _STDDEFS_H_
#define _STDDEFS_H_
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned long uint32_t;
-typedef unsigned long long uint64_t;
-
-typedef signed char int8_t;
-typedef signed short int16_t;
-typedef signed long int32_t;
-typedef signed long long int64_t;
-
-typedef volatile unsigned char vuint8_t;
-typedef volatile unsigned short vuint16_t;
-typedef volatile unsigned long vuint32_t;
-typedef volatile unsigned long long vuint64_t;
-
-typedef volatile signed char vint8_t;
-typedef volatile signed short vint16_t;
-typedef volatile signed long vint32_t;
-typedef volatile signed long long vint64_t;
-
-
-typedef unsigned char uchar;
-typedef unsigned short ushort;
-typedef unsigned long ulong;
-typedef unsigned int uint;
-
-typedef volatile unsigned char vuchar;
-typedef volatile unsigned short vushort;
-typedef volatile unsigned long vulong;
-typedef volatile unsigned int vuint;
-typedef volatile int vint;
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned long uint32_t;
+typedef unsigned long long uint64_t;
+
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed long int32_t;
+typedef signed long long int64_t;
+
+typedef volatile unsigned char vuint8_t;
+typedef volatile unsigned short vuint16_t;
+typedef volatile unsigned long vuint32_t;
+typedef volatile unsigned long long vuint64_t;
+
+typedef volatile signed char vint8_t;
+typedef volatile signed short vint16_t;
+typedef volatile signed long vint32_t;
+typedef volatile signed long long vint64_t;
+
+
+typedef unsigned char uchar;
+typedef unsigned short ushort;
+typedef unsigned long ulong;
+typedef unsigned int uint;
+
+typedef volatile unsigned char vuchar;
+typedef volatile unsigned short vushort;
+typedef volatile unsigned long vulong;
+typedef volatile unsigned int vuint;
+typedef volatile int vint;
#endif