aboutsummaryrefslogtreecommitdiff
path: root/src/core/arm/skyeye_common
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-04 21:38:20 -0500
committerbunnei <bunneidev@gmail.com>2015-01-04 21:38:20 -0500
commitfe76d2b2fe406b93f5dd49dd0e3cfcdfd3694bb0 (patch)
treeb73b2a1f3348cb78c34674a3d705239aaf287ebf /src/core/arm/skyeye_common
parentb058ce6feb28c8de9f7d1477c4b40175598c6791 (diff)
parent41e1cb12e5060dba37071edb5b511abaf06dc9cf (diff)
Merge pull request #405 from lioncash/type
skyeye: Remove duplicate typedefs
Diffstat (limited to 'src/core/arm/skyeye_common')
-rw-r--r--src/core/arm/skyeye_common/skyeye_types.h30
1 files changed, 3 insertions, 27 deletions
diff --git a/src/core/arm/skyeye_common/skyeye_types.h b/src/core/arm/skyeye_common/skyeye_types.h
index e7f022f19..fc7d8d922 100644
--- a/src/core/arm/skyeye_common/skyeye_types.h
+++ b/src/core/arm/skyeye_common/skyeye_types.h
@@ -22,34 +22,10 @@
* 12/16/2006 Michael.Kang <blackfin.kang@gmail.com>
*/
-#ifndef __SKYEYE_TYPES_H
-#define __SKYEYE_TYPES_H
+#pragma once
-#include <stdint.h>
-
-/*default machine word length */
-
-#ifndef __BEOS__
-/* To avoid the type conflict with the qemu */
-#ifndef QEMU
-typedef uint8_t uint8;
-typedef uint16_t uint16;
-typedef uint32_t uint32;
-typedef uint64_t uint64;
-
-typedef int8_t sint8;
-typedef int16_t sint16;
-typedef int32_t sint32;
-typedef int64_t sint64;
-#endif
+#include <cstdint>
typedef uint32_t address_t;
-typedef uint32_t uinteger_t;
-typedef int32_t integer_t;
-
typedef uint32_t physical_address_t;
-typedef uint32_t generic_address_t;
-
-#endif
-
-#endif
+typedef uint32_t generic_address_t;