libstdc++: use extern "C++" in all our C++ system headers.

This is needed to build an independent toolchain with g++ that doesn't think
that all these headers are in C.

Change-Id: Ie9a8ccfcab7780d6a4e5722777d61c2b1b312001
This commit is contained in:
David 'Digit' Turner
2010-06-25 16:53:37 -07:00
parent fa5755ae98
commit 0621a279ad
11 changed files with 43 additions and 0 deletions

View File

@@ -37,6 +37,8 @@
#include <cstddef>
#include <math.h>
extern "C++" {
namespace std
{
// Functions.
@@ -68,4 +70,6 @@ using ::floor;
using ::fmod;
} // namespace std
} // extern C++
#endif // BIONIC_LIBSTDCPP_INCLUDE_CMATH__