summaryrefslogtreecommitdiff
path: root/lib/zassert.h
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2020-04-20 20:53:19 -0300
committerRenato Westphal <renato@opensourcerouting.org>2020-04-22 23:49:22 -0300
commit17e38209a593f6b95b56aba11bed11d233da07c2 (patch)
treec80f25fa35e9b76c20e4183ec93ba0940ad445dc /lib/zassert.h
parent86ac1facf38df2006ab73f30eae0301057fbcade (diff)
lib, zebra: add missing extern "C" {} blocks to new header files
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'lib/zassert.h')
-rw-r--r--lib/zassert.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/zassert.h b/lib/zassert.h
index d45e1be5f8..e50a88f407 100644
--- a/lib/zassert.h
+++ b/lib/zassert.h
@@ -19,6 +19,10 @@
#ifndef _QUAGGA_ASSERT_H
#define _QUAGGA_ASSERT_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
extern void _zlog_assert_failed(const char *assertion, const char *file,
unsigned int line, const char *function)
__attribute__((noreturn));
@@ -39,4 +43,8 @@ extern void _zlog_assert_failed(const char *assertion, const char *file,
#undef assert
#define assert(EX) zassert(EX)
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _QUAGGA_ASSERT_H */