std_cwchar.h: Remove size_t injection, include std_cstddef.
authorBenjamin Kosnik <bkoz@redhat.com>
Sat, 9 Jun 2001 18:53:35 +0000 (18:53 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Sat, 9 Jun 2001 18:53:35 +0000 (18:53 +0000)
2001-06-09  Benjamin Kosnik  <bkoz@redhat.com>

* include/c_std/bits/std_cwchar.h: Remove size_t injection,
include std_cstddef.
* include/c_std/bits/std_ctime.h: Same.
* include/c_std/bits/std_cstring.h: Same.
* include/c_std/bits/std_cstdlib.h: Same.

* include/c_std/bits/std_cstdio.h: Remove vsnprintf, snprintf.
* include/c_std/bits/std_cctype.h: Remove isblank.

From-SVN: r43097

libstdc++-v3/ChangeLog
libstdc++-v3/include/c_std/bits/std_cstdio.h
libstdc++-v3/include/c_std/bits/std_cstdlib.h
libstdc++-v3/include/c_std/bits/std_cstring.h
libstdc++-v3/include/c_std/bits/std_ctime.h
libstdc++-v3/include/c_std/bits/std_cwchar.h

index 9ebecfa2d084c24a257369abd9e37f9cd63603f9..2b02908df04801c2f2264bc94ccd01c46f24c9e0 100644 (file)
@@ -1,5 +1,12 @@
 2001-06-09  Benjamin Kosnik  <bkoz@redhat.com>
 
+       * include/c_std/bits/std_cwchar.h: Remove size_t injection,
+       include std_cstddef.
+       * include/c_std/bits/std_ctime.h: Same.
+       * include/c_std/bits/std_cstring.h: Same.
+       * include/c_std/bits/std_cstdlib.h: Same.
+       
+       * include/c_std/bits/std_cstdio.h: Remove vsnprintf, snprintf.
        * include/c_std/bits/std_cctype.h: Remove isblank.
 
 2001-06-09  Benjamin Kosnik  <bkoz@redhat.com>
index 5f2ccf20b23bff8a03187d95b66d390009b0f3ba..083922454444f7d91653c972c5f7a6ccc7d5f700 100644 (file)
 #undef fscanf
 #undef printf
 #undef scanf
-#undef snprintf
 #undef sprintf
 #undef sscanf
 #undef vfprintf
 #undef vfscanf
 #undef vprintf
 #undef vscanf
-#undef vsnprintf
 #undef vsprintf
 #undef vsscanf
 #undef fgetc
@@ -104,14 +102,12 @@ namespace std
   using ::fscanf;
   using ::printf;
   using ::scanf;
-  using ::snprintf;
   using ::sprintf;
   using ::sscanf;
   using ::vfprintf;
   using ::vfscanf;
   using ::vprintf;
   using ::vscanf;
-  using ::vsnprintf;
   using ::vsprintf;
   using ::vsscanf;
   using ::fgetc;
index f1023c23127c4de34d494a6746bf56f5ec427de7..5ab1197cace942a96789bd75ec8bae3e57f3bf9e 100644 (file)
@@ -35,6 +35,7 @@
 #define _CPP_CSTDLIB 1
 
 #include <bits/c++config.h>
+#include <bits/std_cstddef.h>
 
 #pragma GCC system_header
 #include_next <stdlib.h>
@@ -79,8 +80,6 @@
 
 namespace std 
 {
-  using ::size_t;      // cstddef
-
   using ::div_t;
   using ::ldiv_t;
 
index 850c4d312aca0390fc49a0c469c0cf3fabfef54b..5ad06ee9e9ac87e8bc53d8e35a707a0c3e7e1042 100644 (file)
@@ -34,6 +34,8 @@
 #ifndef _CPP_CSTRING
 #define _CPP_CSTRING 1
 
+#include <bits/std_cstddef.h>
+
 #pragma GCC system_header
 #include_next <string.h>
 
@@ -63,8 +65,6 @@
 
 namespace std 
 {
-  using ::size_t;      // cstddef
-
   using ::memcpy;
   using ::memmove;
   using ::strcpy;
index 2fc6e427e4171120d2d97c8c1cc092829616c04b..b97c046015590dceb603b02a08438d95d0a1c366 100644 (file)
@@ -34,6 +34,8 @@
 #ifndef _CPP_CTIME
 #define _CPP_CTIME 1
 
+#include <bits/std_cstddef.h>
+
 #pragma GCC system_header
 #include_next <time.h>
 
@@ -50,8 +52,6 @@
 
 namespace std
 {
-  using ::size_t;      // cstddef
-
   using ::clock_t;
   using ::time_t;
   using ::tm;
index 8ed0d8a53b3db54324fcf1b36f886b7968d36190..2a440aac286e4a20a07d7d691a601ce22249a00f 100644 (file)
@@ -35,6 +35,7 @@
 #define _CPP_CWCHAR 1
 
 #include <bits/c++config.h>
+#include <bits/std_cstddef.h>
 
 #if _GLIBCPP_HAVE_WCHAR_H
 #pragma GCC system_header
@@ -121,8 +122,6 @@ namespace std
 #if _GLIBCPP_USE_WCHAR_T
 namespace std
 {
-  using ::size_t;      // cstddef
-
   using ::wint_t;
 
   using ::btowc;