Commit 2e27bc79 authored by gdr's avatar gdr
Browse files

Include <cstring> and <cstdlib>.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69329 138bc75d-0d04-0410-961f-82ee72b054a4
parent ad3a6239
2003-07-14 Gabriel Dos Reis <gcc@integrable-solutions.net>
* config/locale/gnu/c_locale.h (__convert_from_v): Include
<cstring> and <cstdlib>. Qualify names.
2003-07-13 Mark Mitchell <mark@codesourcery.com> 2003-07-13 Mark Mitchell <mark@codesourcery.com>
* config/locale/generic/c_locale.h: Include <cstdlib> and * config/locale/generic/c_locale.h: Include <cstdlib> and
......
...@@ -38,6 +38,8 @@ ...@@ -38,6 +38,8 @@
#pragma GCC system_header #pragma GCC system_header
#include <cstring> // get std::strlen
#include <cstdlib> // get std::malloc
#include <clocale> #include <clocale>
#include <langinfo.h> // For codecvt #include <langinfo.h> // For codecvt
#include <iconv.h> // For codecvt using iconv, iconv_t #include <iconv.h> // For codecvt using iconv, iconv_t
...@@ -73,10 +75,10 @@ namespace std ...@@ -73,10 +75,10 @@ namespace std
_Tv __v, const __c_locale&, int __prec = -1) _Tv __v, const __c_locale&, int __prec = -1)
{ {
char* __old = setlocale(LC_ALL, NULL); char* __old = setlocale(LC_ALL, NULL);
char* __sav = static_cast<char*>(malloc(strlen(__old) + 1)); char* __sav = static_cast<char*>(std::malloc(std::strlen(__old) + 1));
if (__sav) if (__sav)
strcpy(__sav, __old); std::strcpy(__sav, __old);
setlocale(LC_ALL, "C"); std::setlocale(LC_ALL, "C");
#endif #endif
int __ret; int __ret;
...@@ -87,16 +89,16 @@ namespace std ...@@ -87,16 +89,16 @@ namespace std
__ret = snprintf(__out, __size, __fmt, __v); __ret = snprintf(__out, __size, __fmt, __v);
#else #else
if (__prec >= 0) if (__prec >= 0)
__ret = sprintf(__out, __fmt, __prec, __v); __ret = std::sprintf(__out, __fmt, __prec, __v);
else else
__ret = sprintf(__out, __fmt, __v); __ret = std::sprintf(__out, __fmt, __v);
#endif #endif
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
__gnu_cxx::__uselocale(__old); __gnu_cxx::__uselocale(__old);
#else #else
setlocale(LC_ALL, __sav); std::setlocale(LC_ALL, __sav);
free(__sav); std::free(__sav);
#endif #endif
return __ret; return __ret;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment