xref: /freebsd/crypto/krb5/src/ccapi/test/test_cc_context_compare.c (revision 7f2fe78b9dd5f51c821d771b63d2e096f6fd49e9)
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 Schubert int 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_context_compare();
14*7f2fe78bSCy Schubert     return err;
15*7f2fe78bSCy Schubert }
16