xref: /freebsd/crypto/krb5/src/ccapi/test/test_cc_set_principal.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_v2.h"
7*7f2fe78bSCy Schubert 
main(int argc,const char * argv[])8*7f2fe78bSCy Schubert int main (int argc, const char * argv[]) {
9*7f2fe78bSCy Schubert 
10*7f2fe78bSCy Schubert     cc_int32 err = ccNoError;
11*7f2fe78bSCy Schubert     T_CCAPI_INIT;
12*7f2fe78bSCy Schubert     err = check_cc_set_principal();
13*7f2fe78bSCy Schubert     return err;
14*7f2fe78bSCy Schubert }
15