diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2017-07-07 17:03:42 +0000 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2017-07-07 17:03:42 +0000 |
| commit | 33a9b234e7087f573ef08cd7318c6497ba08b439 (patch) | |
| tree | d0ea40ad3bf5463a3c55795977c71bcb7d781b4b /src/tests/misc/test_cxx_gss.cpp | |
Diffstat (limited to 'src/tests/misc/test_cxx_gss.cpp')
| -rw-r--r-- | src/tests/misc/test_cxx_gss.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/tests/misc/test_cxx_gss.cpp b/src/tests/misc/test_cxx_gss.cpp new file mode 100644 index 000000000000..91622cd8649c --- /dev/null +++ b/src/tests/misc/test_cxx_gss.cpp @@ -0,0 +1,10 @@ +// Test that the gssapi.h header is compatible with C++ application code. + +#include <stdio.h> +#include "gssapi/gssapi.h" + +int main () +{ + printf("hello, world\n"); + return 0; +} |
