summaryrefslogtreecommitdiffstats
path: root/src/tests/misc/test_cxx_gss.cpp
blob: 91622cd8649cdf3d316c61ede32623dfffc1f7b8 (plain)
1
2
3
4
5
6
7
8
9
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;
}