]> git.ozlabs.org Git - ccan/blobdiff - ccan/check_type/check_type.h
ccan_tokenizer, check_type, container_of, typesafe_cb: handle !HAVE_TYPEOF
[ccan] / ccan / check_type / check_type.h
index d0dc0d4b295fb9bf800bf4e1d69ac59a7ed5615f..884056719cc718eb075acd1a8848c8aef8640265 100644 (file)
@@ -51,7 +51,7 @@
 #define check_types_match(expr1, expr2)                \
        ((typeof(expr1) *)0 != (typeof(expr2) *)0)
 #else
-#include "build_assert/build_assert.h"
+#include <ccan/build_assert/build_assert.h>
 /* Without typeof, we can only test the sizes. */
 #define check_type(expr, type)                                 \
        EXPR_BUILD_ASSERT(sizeof(expr) == sizeof(type))