src/common/{assert,macros}.h: wrap code in C++ guards
[babeltrace.git] / src / common / macros.h
index 718a3050ccb1b4b96b9a00cf84adeb35185bdae0..9014afc2c637d1b1df6eb31764c4815074ae03c3 100644 (file)
@@ -7,6 +7,10 @@
 #ifndef _BABELTRACE_INTERNAL_H
 #define _BABELTRACE_INTERNAL_H
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #define bt_max_t(type, a, b)   \
        ((type) (a) > (type) (b) ? (type) (a) : (type) (b))
 
@@ -71,4 +75,8 @@
        ((void) sizeof((void) (_expr1), (void) (_expr2),                \
                (void) (_expr3), (void) (_expr4), (void) (_expr5), 0))
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
This page took 0.023399 seconds and 4 git commands to generate.