[haiku-commits] BRANCH mmadia-github.separate-build-environment - headers/build/os_target/support

  • From: mmadia-github.separate-build-environment <community@xxxxxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 4 Aug 2012 12:49:20 +0200 (CEST)

added 1 changeset to branch 
'refs/remotes/mmadia-github/separate-build-environment'
old head: 685195d0e13ea41d33adeaebd10bd8fcf754de16
new head: 86770f3727847fc6469931ffd550feaec30dec02

----------------------------------------------------------------------------

86770f3: Fixed the order several typedefs, as they were in reverse order.
  
  Thanks for spotting this, Ingo!

                                        [ Matt Madia <mattmadia@xxxxxxxxx> ]

----------------------------------------------------------------------------

Commit:      86770f3727847fc6469931ffd550feaec30dec02

Author:      Matt Madia <mattmadia@xxxxxxxxx>
Date:        Sat Aug  4 06:35:24 2012 UTC

----------------------------------------------------------------------------

1 file changed, 9 insertions(+), 9 deletions(-)
.../build/os_target/support/target_SupportDefs.h   |   18 ++++++++--------

----------------------------------------------------------------------------

diff --git a/headers/build/os_target/support/target_SupportDefs.h 
b/headers/build/os_target/support/target_SupportDefs.h
index 22d69e9..ffcb0c6 100644
--- a/headers/build/os_target/support/target_SupportDefs.h
+++ b/headers/build/os_target/support/target_SupportDefs.h
@@ -261,17 +261,17 @@ _HAIKU_BUILD_DECLARE_FUNCTION(void*, 
_haiku_build_get_stack_frame, (void))
        typedef volatile _haiku_build_vuint64           vuint64;
 
 /* descriptive types */
-       typedef int32                                   _haiku_build_int32;
-       typedef int64                                   _haiku_build_int64;
-       typedef int64                                   _haiku_build_int64;
-       typedef uint32                                  _haiku_build_uint32;
-       typedef uint32                                  _haiku_build_uint32;
+       typedef _haiku_build_int32              int32;
+       typedef _haiku_build_int64              int64;
+       typedef _haiku_build_int64              int64;
+       typedef _haiku_build_uint32             uint32;
+       typedef _haiku_build_uint32             uint32;
 
-       typedef __haiku_phys_addr_t             __haiku_build_haiku_phys_addr_t;
-       typedef phys_addr_t                             
_haiku_build_phys_addr_t;
+       typedef __haiku_build_haiku_phys_addr_t         __haiku_phys_addr_t;
+       typedef _haiku_build_phys_addr_t                        phys_addr_t;
 
-       typedef __haiku_generic_addr_t  __haiku_build_haiku_generic_addr_t;
-       typedef generic_addr_t                  _haiku_build_generic_addr_t;
+       typedef __haiku_build_haiku_generic_addr_t      __haiku_generic_addr_t;
+       typedef _haiku_build_generic_addr_t                     generic_addr_t;
 
 /* printf()/scanf() format strings for [u]int* types */
 #      define B_PRId8          _HAIKU_BUILD_B_PRId8


Other related posts: