summaryrefslogtreecommitdiffstats
path: root/src/misc.h
diff options
context:
space:
mode:
authorChristophe Grenier <[email protected]>2009-01-10 16:04:39 +0100
committerChristophe Grenier <[email protected]>2009-01-10 16:04:39 +0100
commit86f46991fb400a57d6c84699818dfeccfa08cc2a (patch)
treeb4b66dfa6ce9ec06c4de918104054497ab38eae8 /src/misc.h
parent38ce28702691b4adc56898262a09cd1f0500a681 (diff)
Modify header files for C function declaration if C++ compilation
Diffstat (limited to 'src/misc.h')
-rw-r--r--src/misc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/misc.h b/src/misc.h
index 42f027f8..dd71194f 100644
--- a/src/misc.h
+++ b/src/misc.h
@@ -19,5 +19,13 @@
Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
const char *get_os(void);
const char *get_compiler(void);
+
+#ifdef __cplusplus
+} /* closing brace for extern "C" */
+#endif