aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/core/plugin_registry.template
diff options
context:
space:
mode:
authorGravatar Dan Zhang <danzh@google.com>2017-12-01 15:58:47 -0500
committerGravatar Dan Zhang <danzh@google.com>2017-12-01 15:58:47 -0500
commit26024c801b5b171d448204507f2f10f76c93fe35 (patch)
tree6130826a0941f3fd1bb4ade0c73cfa013e497f83 /templates/src/core/plugin_registry.template
parentec8a59e1125153fcf27eace15cdda8f975adf1c4 (diff)
parent0a6329c0a825ec36268d72c8fd2ac9a8296a25f0 (diff)
Merge branch 'master' into asyncio
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) {