aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/impl/codegen/atm.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-10-25 17:56:09 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2017-10-25 17:56:09 -0700
commit589e58316abeba98ac96a661f31b2a8502260c0b (patch)
tree5392673217f83a6de116cfbb6f810beabfe48314 /include/grpc/impl/codegen/atm.h
parent39aed1ae8bd0f7584ded63e2c90cb506da40c48d (diff)
Missing extern C in public API
Diffstat (limited to 'include/grpc/impl/codegen/atm.h')
-rw-r--r--include/grpc/impl/codegen/atm.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/grpc/impl/codegen/atm.h b/include/grpc/impl/codegen/atm.h
index 764bee5272..59d4d6ec72 100644
--- a/include/grpc/impl/codegen/atm.h
+++ b/include/grpc/impl/codegen/atm.h
@@ -79,9 +79,17 @@
#error could not determine platform for atm
#endif
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/** Adds \a delta to \a *value, clamping the result to the range specified
by \a min and \a max. Returns the new value. */
gpr_atm gpr_atm_no_barrier_clamped_add(gpr_atm *value, gpr_atm delta,
gpr_atm min, gpr_atm max);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* GRPC_IMPL_CODEGEN_ATM_H */