aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/core/plugin_registry.template
diff options
context:
space:
mode:
Diffstat (limited to 'templates/src/core/plugin_registry.template')
-rw-r--r--templates/src/core/plugin_registry.template4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/src/core/plugin_registry.template b/templates/src/core/plugin_registry.template
index 8d7617129f..805ae9049f 100644
--- a/templates/src/core/plugin_registry.template
+++ b/templates/src/core/plugin_registry.template
@@ -25,8 +25,8 @@ template: |
#include <grpc/grpc.h>
%for plugin in selected.plugins:
- extern "C" void ${plugin}_init(void);
- extern "C" void ${plugin}_shutdown(void);
+ void ${plugin}_init(void);
+ void ${plugin}_shutdown(void);
%endfor
void grpc_register_built_in_plugins(void) {