equal
deleted
inserted
replaced
17 #ifndef _MATH_PRIVATE_H_ |
17 #ifndef _MATH_PRIVATE_H_ |
18 #define _MATH_PRIVATE_H_ |
18 #define _MATH_PRIVATE_H_ |
19 |
19 |
20 #include "SDL_endian.h" |
20 #include "SDL_endian.h" |
21 |
21 |
|
22 #define huge really_big /* huge is a reserved keyword in VC++ 6.0 */ |
22 #define int32_t math_int32_t |
23 #define int32_t math_int32_t |
23 #define u_int32_t math_u_int32_t |
24 #define u_int32_t math_u_int32_t |
24 typedef Sint32 math_int32_t; |
25 typedef Sint32 math_int32_t; |
25 typedef Uint32 math_u_int32_t; |
26 typedef Uint32 math_u_int32_t; |
26 |
27 |