summaryrefslogtreecommitdiff
path: root/src/util/strndup.h
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2015-09-29 16:01:22 +0100
committerJose Fonseca <jfonseca@vmware.com>2015-09-29 16:01:56 +0100
commit952366a60e0743ae025edaf370a233d0633edf7b (patch)
treea25d8c1a429163a160285d4e149af2295dd77f58 /src/util/strndup.h
parentc0722be9f58ef89dae98d8c459ec4f9589f97748 (diff)
util: Fix strndup prototype on C++.
Trivial.
Diffstat (limited to 'src/util/strndup.h')
-rw-r--r--src/util/strndup.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/util/strndup.h b/src/util/strndup.h
index 54346823596..c5ed7a8c8d2 100644
--- a/src/util/strndup.h
+++ b/src/util/strndup.h
@@ -27,6 +27,14 @@
#if defined(_WIN32)
-extern char *strndup(const char *str, size_t max);
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+char *strndup(const char *str, size_t max);
+
+#ifdef __cplusplus
+}
+#endif
#endif