From: Ian Lance Taylor Date: Fri, 21 Mar 2008 23:40:18 +0000 (+0000) Subject: * filenames.h: Add extern "C" when compiled with C++. X-Git-Tag: sid-snapshot-20080401~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91edef2df14a6c33d4c99614af99b4f7ecdce718;p=external%2Fbinutils.git * filenames.h: Add extern "C" when compiled with C++. --- diff --git a/include/ChangeLog b/include/ChangeLog index fd6c3d2..7e1bf20 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2008-03-21 Ian Lance Taylor + + * filenames.h: Add extern "C" when compiled with C++. + 2008-02-15 Alan Modra * bfdlink.h (struct bfd_link_hash_table): Delete creator field. diff --git a/include/filenames.h b/include/filenames.h index 5338208..0d411cc 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 */