summaryrefslogtreecommitdiff
path: root/lib/idx.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/idx.h')
-rw-r--r--lib/idx.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/idx.h b/lib/idx.h
index f9ce0acd..43793f2d 100644
--- a/lib/idx.h
+++ b/lib/idx.h
@@ -111,6 +111,11 @@
help producing good code and good warnings. The type 'idx_t' could
then be typedef'ed to a range type that is signed after promotion. */
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
/* In the future, idx_t could be typedef'ed to a signed range type.
The clang "extended integer types", supported in Clang 11 or newer
<https://clang.llvm.org/docs/LanguageExtensions.html#extended-integer-types>,
@@ -131,4 +136,9 @@ typedef ptrdiff_t idx_t;
Perhaps there should be another macro IDX_VALUE_BITS that does not
count the sign bit and is therefore one less than PTRDIFF_WIDTH. */
+
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _IDX_H */