* filenames.h: Add extern "C" when compiled with C++.
This commit is contained in:
parent
b916272a4b
commit
b00c2ef98f
|
@ -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>
|
2008-02-15 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* bfdlink.h (struct bfd_link_hash_table): Delete creator field.
|
* bfdlink.h (struct bfd_link_hash_table): Delete creator field.
|
||||||
|
|
|
@ -26,6 +26,10 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
#ifndef FILENAMES_H
|
#ifndef FILENAMES_H
|
||||||
#define FILENAMES_H
|
#define FILENAMES_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(__MSDOS__) || defined(_WIN32) || defined(__OS2__) || defined (__CYGWIN__)
|
#if defined(__MSDOS__) || defined(_WIN32) || defined(__OS2__) || defined (__CYGWIN__)
|
||||||
|
|
||||||
#ifndef HAVE_DOS_BASED_FILE_SYSTEM
|
#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);
|
extern int filename_cmp (const char *s1, const char *s2);
|
||||||
#define FILENAME_CMP(s1, s2) filename_cmp(s1, s2)
|
#define FILENAME_CMP(s1, s2) filename_cmp(s1, s2)
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* FILENAMES_H */
|
#endif /* FILENAMES_H */
|
||||||
|
|
Loading…
Reference in New Issue