[qfcc] Move countof macro to qtypes

It makes it more accessible and easy to remove when it (or equivalent)
becomes standard in C.
This commit is contained in:
Bill Currie 2025-01-20 15:02:21 +09:00
parent 0ecd8f06bd
commit 1f0d7f249c
2 changed files with 3 additions and 2 deletions

View file

@ -42,6 +42,9 @@
# undef msg_t
#endif
#undef countof
#define countof(x) (sizeof(x)/sizeof(x[0]))
#undef field_offset
#define field_offset(type,field) ((size_t)&(((type *)0)->field))

View file

@ -693,8 +693,6 @@ static expr_type_t bool_ops[] = {
{}
};
#define countof(x) (sizeof(x)/sizeof(x[0]))
static expr_type_t *expr_types[] = {
[QC_EQ] = equality_ops,
[QC_NE] = equality_ops,