xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/legacy/examples/cgo/cc_dependency/version.h (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
1 #ifndef BAZEL_RULES_GO_EXAMPLES_CGO_CC_DEPENDENCY_VERSION_H_
2 #define BAZEL_RULES_GO_EXAMPLES_CGO_CC_DEPENDENCY_VERSION_H_
3 
4 #ifdef __cplusplus
5 extern "C" void PrintCXXVersion();
6 #else
7 void PrintCXXVersion();
8 #endif
9 
10 #endif  // BAZEL_RULES_GO_EXAMPLES_CGO_CC_DEPENDENCY_VERSION_H_
11