add pflash
diff --git a/objects/pflash/ccan/check_type/test/compile_fail-check_type.c b/objects/pflash/ccan/check_type/test/compile_fail-check_type.c
new file mode 100644
index 0000000..00dad58
--- /dev/null
+++ b/objects/pflash/ccan/check_type/test/compile_fail-check_type.c
@@ -0,0 +1,9 @@
+#include <ccan/check_type/check_type.h>

+

+int main(int argc, char *argv[])

+{

+#ifdef FAIL

+	check_type(argc, char);

+#endif

+	return 0;

+}