aboutsummaryrefslogtreecommitdiff
path: root/src/libeinfo
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2014-10-21 09:31:07 -0400
committerAnthony G. Basile <blueness@gentoo.org>2014-10-21 09:39:34 -0400
commit4a08517cac3c68c232694db7288654b58b68b8ba (patch)
tree6300888d57d20204bea758bedcaf9e7130fb150a /src/libeinfo
parent9bf789f78890c8b5879d29acb9fb0e23285baee4 (diff)
einfo.h, rc.h.in: ensure __BEGIN_DECLS is defined
Some Standard C Libraries, like musl, don't define __BEGIN_DECLS or __END_DECLS. We add some ifdef magic to ensure these are available.
Diffstat (limited to 'src/libeinfo')
-rw-r--r--src/libeinfo/einfo.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libeinfo/einfo.h b/src/libeinfo/einfo.h
index 31a891f8..8fe56497 100644
--- a/src/libeinfo/einfo.h
+++ b/src/libeinfo/einfo.h
@@ -48,6 +48,16 @@
# endif
#endif
+#undef __BEGIN_DECLS
+#undef __END_DECLS
+#ifdef __cplusplus
+# define __BEGIN_DECLS extern "C" {
+# define __END_DECLS }
+#else
+# define __BEGIN_DECLS /* empty */
+# define __END_DECLS /* empty */
+#endif
+
__BEGIN_DECLS
/*! @brief Color types to use */