1// Test that the gssapi.h header is compatible with C++ application code. 2 3#include <stdio.h> 4#include "gssapi/gssapi.h" 5 6int main () 7{ 8 printf("hello, world\n"); 9 return 0; 10} 11 12