diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-10-10 13:14:15 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-10-10 13:14:15 +0000 |
commit | 7738ddaa1197c6201886e1c8f6837af5c2c47611 (patch) | |
tree | 12e2672ee9e34031fce0c334913ab7a4cb3e2026 /extra/config/expr.h | |
parent | 9c2d269cfa77cf10eeb9acb24f5eab084a66644a (diff) |
- pull kconfig from linux-2.6.27
Diffstat (limited to 'extra/config/expr.h')
-rw-r--r-- | extra/config/expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/config/expr.h b/extra/config/expr.h index 9d60dd330..9d4cba1c0 100644 --- a/extra/config/expr.h +++ b/extra/config/expr.h @@ -184,12 +184,12 @@ void expr_fprint(struct expr *e, FILE *out); struct gstr; /* forward */ void expr_gstr_print(struct expr *e, struct gstr *gs); -static __inline__ int expr_is_yes(struct expr *e) +static inline int expr_is_yes(struct expr *e) { return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); } -static __inline__ int expr_is_no(struct expr *e) +static inline int expr_is_no(struct expr *e) { return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); } |