Define ARRAY_LENGTH
This commit is contained in:
parent
214ac7c1ff
commit
4591753ad4
|
@ -127,13 +127,14 @@ typedef int hb_mutex_t;
|
|||
# define NULL ((void *) 0)
|
||||
#endif
|
||||
|
||||
#ifndef FALSE
|
||||
#undef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
#ifndef TRUE
|
||||
#undef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
|
||||
#undef ARRAY_LENGTH
|
||||
#define ARRAY_LENGTH(__array) ((signed int) (sizeof (__array) / sizeof (__array[0])))
|
||||
|
||||
#define HB_STMT_START do
|
||||
#define HB_STMT_END while (0)
|
||||
|
|
Loading…
Reference in New Issue