summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2008-03-21 23:40:18 +0000
committerIan Lance Taylor <ian@airs.com>2008-03-21 23:40:18 +0000
commitf42fa510edbb4a3c6c0db4fb4d8b450539c64456 (patch)
tree17a9ee811aa82c5f2f480ecad7d89e3c0e0273ba
parentf13ece45b1213e7bf5bb47893805b584f64cd7ec (diff)
downloadgdb-f42fa510edbb4a3c6c0db4fb4d8b450539c64456.tar.gz
* filenames.h: Add extern "C" when compiled with C++.
-rw-r--r--include/ChangeLog4
-rw-r--r--include/filenames.h8
2 files changed, 12 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index fd6c3d232ed..7e1bf2049eb 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2008-03-21 Ian Lance Taylor <iant@google.com>
+
+ * filenames.h: Add extern "C" when compiled with C++.
+
2008-02-15 Alan Modra <amodra@bigpond.net.au>
* bfdlink.h (struct bfd_link_hash_table): Delete creator field.
diff --git a/include/filenames.h b/include/filenames.h
index 5338208e024..0d411cc1264 100644
--- a/include/filenames.h
+++ b/include/filenames.h
@@ -26,6 +26,10 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef FILENAMES_H
#define FILENAMES_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#if defined(__MSDOS__) || defined(_WIN32) || defined(__OS2__) || defined (__CYGWIN__)
#ifndef HAVE_DOS_BASED_FILE_SYSTEM
@@ -49,4 +53,8 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
extern int filename_cmp (const char *s1, const char *s2);
#define FILENAME_CMP(s1, s2) filename_cmp(s1, s2)
+#ifdef __cplusplus
+}
+#endif
+
#endif /* FILENAMES_H */