* lib/version-etc.h: Add extern "C" block.
+2022-01-08 Marc Nieper-Wißkirchen <marc@nieper-wisskirchen.de>
+
+ version-etc: Adapt header file for use in C++ applications.
+ * lib/version-etc.h: Add extern "C" block.
+
2022-01-07 Bruno Haible <bruno@clisp.org>
sigsegv: Improve support for Linux/LoongArch64.
# include <stdarg.h>
# include <stdio.h>
+# ifdef __cplusplus
+extern "C"
+{
+# endif
+
extern const char version_etc_copyright[];
/* The three functions below display the --version information in the
/* Display the usual "Report bugs to" stanza. */
extern void emit_bug_reporting_address (void);
+# ifdef __cplusplus
+}
+# endif
+
#endif /* VERSION_ETC_H */