ICU-880 U_ALIGN_CODE and U_INLINE. Add defaults for non Windows/UNIX platforms
X-SVN-Rev: 4624
This commit is contained in:
parent
7713040819
commit
37de66cb77
@ -184,7 +184,7 @@ typedef unsigned short uint16_t;
|
|||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
#define U_INLINE
|
#define U_INLINE
|
||||||
#define U_ALIGN_CODE
|
#define U_ALIGN_CODE(n)
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Programs used by ICU code */
|
/* Programs used by ICU code */
|
||||||
|
@ -164,4 +164,20 @@ typedef int8_t UBool;
|
|||||||
# define FALSE 0
|
# define FALSE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* U_INLINE and U_ALIGN_CODE Set default vaues if these are not already */
|
||||||
|
/* defined. Definitions normally are in */
|
||||||
|
/* platform.h or the corresponding file for */
|
||||||
|
/* the OS in use. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
#ifndef U_ALIGN_CODE
|
||||||
|
# define U_ALIGN_CODE(n)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef U_INLINE
|
||||||
|
# define U_INLINE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user