diff options
Diffstat (limited to 'include/my_global.h')
-rw-r--r-- | include/my_global.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/my_global.h b/include/my_global.h index 1026e8e3940..e5cb75365b4 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -640,9 +640,6 @@ typedef long my_ptrdiff_t; typedef long long my_ptrdiff_t; #endif -/* typedef used for length of string; Should be unsigned! */ -typedef ulong size_str; - #define MY_ALIGN(A,L) (((A) + (L) - 1) & ~((L) - 1)) #define ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double)) /* Size to make adressable obj. */ @@ -711,6 +708,9 @@ typedef long longlong; #endif #endif +/* typedef used for length of string; Should be unsigned! */ +typedef ulong size_str; + #ifdef USE_RAID /* The following is done with a if to not get problems with pre-processors |