aboutsummaryrefslogtreecommitdiff
path: root/include/erofs/hashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/erofs/hashmap.h')
-rw-r--r--include/erofs/hashmap.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/erofs/hashmap.h b/include/erofs/hashmap.h
index 024a14e..3d38578 100644
--- a/include/erofs/hashmap.h
+++ b/include/erofs/hashmap.h
@@ -2,6 +2,11 @@
#ifndef __EROFS_HASHMAP_H
#define __EROFS_HASHMAP_H
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
/* Copied from https://github.com/git/git.git */
#include <stdio.h>
#include <stdlib.h>
@@ -100,4 +105,8 @@ static inline const char *strintern(const char *string)
return memintern(string, strlen(string));
}
+#ifdef __cplusplus
+}
+#endif
+
#endif