aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/c_std/bits/std_clocale.h
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/include/c_std/bits/std_clocale.h')
-rw-r--r--libstdc++-v3/include/c_std/bits/std_clocale.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/libstdc++-v3/include/c_std/bits/std_clocale.h b/libstdc++-v3/include/c_std/bits/std_clocale.h
index 9fb5a1e02a2..02eb8fcc90c 100644
--- a/libstdc++-v3/include/c_std/bits/std_clocale.h
+++ b/libstdc++-v3/include/c_std/bits/std_clocale.h
@@ -31,13 +31,9 @@
// ISO C++ 14882: 18.2.2 Implementation properties: C library
//
-// Note: This is not a conforming implementation.
-
#ifndef _CPP_CLOCALE
#define _CPP_CLOCALE 1
-#include <bits/c++config.h>
-
#pragma GCC system_header
#include <locale.h>
@@ -48,11 +44,8 @@
namespace std
{
using ::lconv;
- extern "C" char* setlocale(int, const char*);
- extern "C" struct lconv* localeconv(void);
+ using ::setlocale;
+ using ::localeconv;
}
#endif
-
-
-