1*7f2fe78bSCy Schubert #include <stdio.h> 2*7f2fe78bSCy Schubert #include <limits.h> 3*7f2fe78bSCy Schubert 4*7f2fe78bSCy Schubert #include "test_ccapi_check.h" 5*7f2fe78bSCy Schubert #include "test_ccapi_constants.h" 6*7f2fe78bSCy Schubert #include "test_ccapi_context.h" 7*7f2fe78bSCy Schubert #include "test_ccapi_ccache.h" 8*7f2fe78bSCy Schubert main(int argc,const char * argv[])9*7f2fe78bSCy Schubertint main (int argc, const char * argv[]) { 10*7f2fe78bSCy Schubert 11*7f2fe78bSCy Schubert cc_int32 err = ccNoError; 12*7f2fe78bSCy Schubert T_CCAPI_INIT; 13*7f2fe78bSCy Schubert err = check_cc_ccache_compare(); 14*7f2fe78bSCy Schubert return err; 15*7f2fe78bSCy Schubert } 16