Commit 7dd8177f by Bernardo Innocenti Committed by Bernardo Innocenti

cmath.tcc, [...]: Remove trailing whitespace.

	* include/c_std/cmath.tcc, include/c_std/std_cassert.h,
	include/c_std/std_cctype.h, include/c_std/std_cmath.h,
	include/c_std/std_cstddef.h, include/c_std/std_cstdio.h,
	include/c_std/std_cstdlib.h, include/c_std/std_cstring.h,
	include/c_std/std_cwchar.h, include/c_std/std_cwctype.h:
	Remove trailing whitespace.

From-SVN: r74458
parent 7b74e24e
2003-12-09 Bernardo Innocenti <bernie@develer.com> 2003-12-09 Bernardo Innocenti <bernie@develer.com>
* include/c_std/cmath.tcc, include/c_std/std_cassert.h,
include/c_std/std_cctype.h, include/c_std/std_cmath.h,
include/c_std/std_cstddef.h, include/c_std/std_cstdio.h,
include/c_std/std_cstdlib.h, include/c_std/std_cstring.h,
include/c_std/std_cwchar.h, include/c_std/std_cwctype.h:
Remove trailing whitespace.
2003-12-09 Bernardo Innocenti <bernie@develer.com>
* include/c/std_cctype.h, include/c/std_cmath.h, * include/c/std_cctype.h, include/c/std_cmath.h,
include/c/std_cstdlib.h include/c/std_cwchar.h, include/c/std_cstdlib.h include/c/std_cwchar.h,
include/c/std_cwctype.h: Remove trailing whitespace. include/c/std_cwctype.h: Remove trailing whitespace.
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#ifndef _GLIBCXX_CMATH_TCC #ifndef _GLIBCXX_CMATH_TCC
#define _GLIBCXX_CMATH_TCC 1 #define _GLIBCXX_CMATH_TCC 1
namespace std namespace std
{ {
template<typename _Tp> template<typename _Tp>
_Tp _Tp
......
// -*- C++ -*- forwarding header. // -*- C++ -*- forwarding header.
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
// Free Software Foundation, Inc. // Free Software Foundation, Inc.
// //
// This file is part of the GNU ISO C++ Library. This library is free // This file is part of the GNU ISO C++ Library. This library is free
......
...@@ -80,4 +80,4 @@ namespace std ...@@ -80,4 +80,4 @@ namespace std
using ::toupper; using ::toupper;
} }
#endif #endif
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#include <stddef.h> #include <stddef.h>
namespace std namespace std
{ {
using ::ptrdiff_t; using ::ptrdiff_t;
using ::size_t; using ::size_t;
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
#undef vprintf #undef vprintf
#undef vsprintf #undef vsprintf
namespace std namespace std
{ {
using ::FILE; using ::FILE;
using ::fpos_t; using ::fpos_t;
...@@ -180,6 +180,6 @@ namespace std ...@@ -180,6 +180,6 @@ namespace std
using __gnu_cxx::vsnprintf; using __gnu_cxx::vsnprintf;
using __gnu_cxx::vsscanf; using __gnu_cxx::vsscanf;
} }
#endif #endif
#endif #endif
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
#undef wcstombs #undef wcstombs
#undef wctomb #undef wctomb
namespace std namespace std
{ {
using ::div_t; using ::div_t;
using ::ldiv_t; using ::ldiv_t;
...@@ -117,14 +117,14 @@ namespace std ...@@ -117,14 +117,14 @@ namespace std
#ifdef _GLIBCXX_USE_WCHAR_T #ifdef _GLIBCXX_USE_WCHAR_T
using ::wcstombs; using ::wcstombs;
using ::wctomb; using ::wctomb;
#endif // _GLIBCXX_USE_WCHAR_T #endif // _GLIBCXX_USE_WCHAR_T
inline long inline long
abs(long __i) { return labs(__i); } abs(long __i) { return labs(__i); }
inline ldiv_t inline ldiv_t
div(long __i, long __j) { return ldiv(__i, __j); } div(long __i, long __j) { return ldiv(__i, __j); }
} }
#if _GLIBCXX_USE_C99 #if _GLIBCXX_USE_C99
...@@ -149,18 +149,18 @@ namespace __gnu_cxx ...@@ -149,18 +149,18 @@ namespace __gnu_cxx
using ::_Exit; using ::_Exit;
#endif #endif
inline long long inline long long
abs(long long __x) { return __x >= 0 ? __x : -__x; } abs(long long __x) { return __x >= 0 ? __x : -__x; }
inline long long inline long long
llabs(long long __x) { return __x >= 0 ? __x : -__x; } llabs(long long __x) { return __x >= 0 ? __x : -__x; }
#if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
inline lldiv_t inline lldiv_t
div(long long __n, long long __d) div(long long __n, long long __d)
{ lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; }
inline lldiv_t inline lldiv_t
lldiv(long long __n, long long __d) lldiv(long long __n, long long __d)
{ lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; }
#endif #endif
...@@ -178,18 +178,18 @@ namespace __gnu_cxx ...@@ -178,18 +178,18 @@ namespace __gnu_cxx
using ::strtoull; using ::strtoull;
#endif #endif
using ::strtof; using ::strtof;
using ::strtold; using ::strtold;
} }
namespace std namespace std
{ {
#if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
using __gnu_cxx::lldiv_t; using __gnu_cxx::lldiv_t;
#endif #endif
using __gnu_cxx::_Exit; using __gnu_cxx::_Exit;
using __gnu_cxx::abs; using __gnu_cxx::abs;
using __gnu_cxx::llabs; using __gnu_cxx::llabs;
#if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
using __gnu_cxx::div; using __gnu_cxx::div;
using __gnu_cxx::lldiv; using __gnu_cxx::lldiv;
#endif #endif
...@@ -201,4 +201,4 @@ namespace std ...@@ -201,4 +201,4 @@ namespace std
} }
#endif #endif
#endif #endif
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
#undef strerror #undef strerror
#undef strlen #undef strlen
namespace std namespace std
{ {
using ::memcpy; using ::memcpy;
using ::memmove; using ::memmove;
......
...@@ -57,16 +57,16 @@ ...@@ -57,16 +57,16 @@
// Need to do a bit of trickery here with mbstate_t as char_traits // Need to do a bit of trickery here with mbstate_t as char_traits
// assumes it is in wchar.h, regardless of wchar_t specializations. // assumes it is in wchar.h, regardless of wchar_t specializations.
#ifndef _GLIBCXX_HAVE_MBSTATE_T #ifndef _GLIBCXX_HAVE_MBSTATE_T
extern "C" extern "C"
{ {
typedef struct typedef struct
{ {
int __fill[6]; int __fill[6];
} mbstate_t; } mbstate_t;
} }
#endif #endif
namespace std namespace std
{ {
using ::mbstate_t; using ::mbstate_t;
} }
...@@ -94,15 +94,15 @@ namespace std ...@@ -94,15 +94,15 @@ namespace std
#undef vfwprintf #undef vfwprintf
#if _GLIBCXX_HAVE_VFWSCANF #if _GLIBCXX_HAVE_VFWSCANF
# undef vfwscanf # undef vfwscanf
#endif #endif
#undef vswprintf #undef vswprintf
#if _GLIBCXX_HAVE_VSWSCANF #if _GLIBCXX_HAVE_VSWSCANF
# undef vswscanf # undef vswscanf
#endif #endif
#undef vwprintf #undef vwprintf
#if _GLIBCXX_HAVE_VWSCANF #if _GLIBCXX_HAVE_VWSCANF
# undef vwscanf # undef vwscanf
#endif #endif
#undef wcrtomb #undef wcrtomb
#undef wcscat #undef wcscat
#undef wcschr #undef wcschr
...@@ -123,7 +123,7 @@ namespace std ...@@ -123,7 +123,7 @@ namespace std
#undef wcstod #undef wcstod
#if _GLIBCXX_HAVE_WCSTOF #if _GLIBCXX_HAVE_WCSTOF
# undef wcstof # undef wcstof
#endif #endif
#undef wcstok #undef wcstok
#undef wcstol #undef wcstol
#undef wcstoul #undef wcstoul
...@@ -164,15 +164,15 @@ namespace std ...@@ -164,15 +164,15 @@ namespace std
using ::vfwprintf; using ::vfwprintf;
#if _GLIBCXX_HAVE_VFWSCANF #if _GLIBCXX_HAVE_VFWSCANF
using ::vfwscanf; using ::vfwscanf;
#endif #endif
using ::vswprintf; using ::vswprintf;
#if _GLIBCXX_HAVE_VSWSCANF #if _GLIBCXX_HAVE_VSWSCANF
using ::vswscanf; using ::vswscanf;
#endif #endif
using ::vwprintf; using ::vwprintf;
#if _GLIBCXX_HAVE_VWSCANF #if _GLIBCXX_HAVE_VWSCANF
using ::vwscanf; using ::vwscanf;
#endif #endif
using ::wcrtomb; using ::wcrtomb;
using ::wcscat; using ::wcscat;
using ::wcscmp; using ::wcscmp;
...@@ -189,7 +189,7 @@ namespace std ...@@ -189,7 +189,7 @@ namespace std
using ::wcstod; using ::wcstod;
#if _GLIBCXX_HAVE_WCSTOF #if _GLIBCXX_HAVE_WCSTOF
using ::wcstof; using ::wcstof;
#endif #endif
using ::wcstok; using ::wcstok;
using ::wcstol; using ::wcstol;
using ::wcstoul; using ::wcstoul;
...@@ -270,4 +270,4 @@ namespace std ...@@ -270,4 +270,4 @@ namespace std
#endif //_GLIBCXX_USE_WCHAR_T #endif //_GLIBCXX_USE_WCHAR_T
#endif #endif
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
#undef iswalpha #undef iswalpha
#if _GLIBCXX_HAVE_ISWBLANK #if _GLIBCXX_HAVE_ISWBLANK
# undef iswblank # undef iswblank
#endif #endif
#undef iswcntrl #undef iswcntrl
#undef iswdigit #undef iswdigit
#undef iswgraph #undef iswgraph
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
#undef iswspace #undef iswspace
#undef iswupper #undef iswupper
#undef iswxdigit #undef iswxdigit
#undef iswctype #undef iswctype
#undef towlower #undef towlower
#undef towupper #undef towupper
#undef towctrans #undef towctrans
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
#if _GLIBCXX_USE_WCHAR_T #if _GLIBCXX_USE_WCHAR_T
namespace std namespace std
{ {
using ::wint_t; // cwchar using ::wint_t; // cwchar
using ::wctype_t; using ::wctype_t;
using ::wctrans_t; using ::wctrans_t;
...@@ -87,7 +87,7 @@ namespace std ...@@ -87,7 +87,7 @@ namespace std
using ::iswalpha; using ::iswalpha;
#if _GLIBCXX_HAVE_ISWBLANK #if _GLIBCXX_HAVE_ISWBLANK
using ::iswblank; using ::iswblank;
#endif #endif
using ::iswcntrl; using ::iswcntrl;
using ::iswdigit; using ::iswdigit;
using ::iswgraph; using ::iswgraph;
...@@ -107,4 +107,4 @@ namespace std ...@@ -107,4 +107,4 @@ namespace std
} }
#endif //_GLIBCXX_USE_WCHAR_T #endif //_GLIBCXX_USE_WCHAR_T
#endif #endif
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