Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/krb5/src/tests/misc/test_cxx_gss.cpp
34907 views
1
// Test that the gssapi.h header is compatible with C++ application code.
2
3
#include <stdio.h>
4
#include "gssapi/gssapi.h"
5
6
int main ()
7
{
8
printf("hello, world\n");
9
return 0;
10
}
11
12