Hash :
a0d14d15
        
        Author :
  
        
        Date :
2011-07-06T16:47:25
        
      
ccan: add ccan/opt and dependencies to build.
#include <ccan/compiler/compiler.h>
#include <ccan/tap/tap.h>
int main(int argc, char *argv[])
{
	plan_tests(2);
	ok1(!IS_COMPILE_CONSTANT(argc));
#if HAVE_BUILTIN_CONSTANT_P
	ok1(IS_COMPILE_CONSTANT(7));
#else
	pass("If !HAVE_BUILTIN_CONSTANT_P, IS_COMPILE_CONSTANT always false");
#endif
	return exit_status();
}