android: Add support for C linkage in vulkan_wrapper
diff --git a/tests/vulkan_wrapper.cpp b/tests/vulkan_wrapper.cpp
index 1740d03..1d31f54 100644
--- a/tests/vulkan_wrapper.cpp
+++ b/tests/vulkan_wrapper.cpp
@@ -14,6 +14,10 @@
  * limitations under the License.
  */
 // This file is generated.
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include "vulkan_wrapper.h"
 #include <dlfcn.h>
 
@@ -399,3 +403,6 @@
 PFN_vkDestroyDebugReportCallbackEXT vkDestroyDebugReportCallbackEXT;
 PFN_vkDebugReportMessageEXT vkDebugReportMessageEXT;
 
+#ifdef __cplusplus
+}
+#endif