* lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
+2009-11-14 John W. Eaton <jwe@gnu.org>
+
+ strftime.h: wrap funtion declaration in extern "C" block
+ * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
+
2009-11-13 Eric Blake <ebb9@byu.net>
getgroups: avoid compiler warning
#include <time.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* Just like strftime, but with two more arguments:
POSIX requires that strftime use the local timezone information.
When __UTC is nonzero and tm->tm_zone is NULL or the empty string,
%N directive. */
size_t nstrftime (char *, size_t, char const *, struct tm const *,
int __utc, int __ns);
+
+#ifdef __cplusplus
+}
+#endif