diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-05 15:48:57 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-05 15:48:57 +0100 |
commit | c7539ced189392b73b76798a5cb865b59ab1283f (patch) | |
tree | d91e3a845c4b47b1bb7708a8a3e07cb10c1c3f84 | |
parent | fabdd4fc5c7354e897f91e96e734f584776736c7 (diff) |
utils.h: get rid of the duplicate BUILD_BUG_ON definition, use the one from libubox
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-rw-r--r-- | utils.h | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -19,17 +19,7 @@ #include <libubox/avl-cmp.h> #include <libubox/blobmsg.h> #include <libubox/vlist.h> - -#ifndef __OPTIMIZE__ -#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) -#else -extern int __build_bug_on_failed; -#define BUILD_BUG_ON(condition) \ - do { \ - ((void)sizeof(char[1 - 2*!!(condition)])); \ - if (condition) __build_bug_on_failed = 1; \ - } while(0) -#endif +#include <libubox/utils.h> static inline bool blobmsg_get_bool_default(struct blob_attr *attr, bool val) { |