diff options
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r-- | libstdc++-v3/include/bits/ios_base.h | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/ext/rope | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/ext/stdio_sync_filebuf.h | 3 | ||||
-rw-r--r-- | libstdc++-v3/include/std/fstream | 8 | ||||
-rw-r--r-- | libstdc++-v3/include/std/ios | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/std/iosfwd | 1 |
6 files changed, 12 insertions, 10 deletions
diff --git a/libstdc++-v3/include/bits/ios_base.h b/libstdc++-v3/include/bits/ios_base.h index 33dc256..e0bbfc3 100644 --- a/libstdc++-v3/include/bits/ios_base.h +++ b/libstdc++-v3/include/bits/ios_base.h @@ -1,6 +1,7 @@ // Iostreams base classes -*- C++ -*- -// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, +// 2006, 2007 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -45,6 +46,7 @@ #include <ext/atomicity.h> #include <bits/localefwd.h> #include <bits/locale_classes.h> +#include <cstdio> // For SEEK_CUR, SEEK_END _GLIBCXX_BEGIN_NAMESPACE(std) diff --git a/libstdc++-v3/include/ext/rope b/libstdc++-v3/include/ext/rope index 45c5de8..0bc371c 100644 --- a/libstdc++-v3/include/ext/rope +++ b/libstdc++-v3/include/ext/rope @@ -58,11 +58,11 @@ #include <bits/allocator.h> #include <ext/hash_fun.h> #include <iosfwd> +#include <bits/gthr.h> # ifdef __GC # define __GC_CONST const # else -# include <bits/gthr.h> # define __GC_CONST // constant except for deallocation # endif diff --git a/libstdc++-v3/include/ext/stdio_sync_filebuf.h b/libstdc++-v3/include/ext/stdio_sync_filebuf.h index f0ec12c..a1d2b38 100644 --- a/libstdc++-v3/include/ext/stdio_sync_filebuf.h +++ b/libstdc++-v3/include/ext/stdio_sync_filebuf.h @@ -1,6 +1,6 @@ // Iostreams wrapper for stdio FILE* -*- C++ -*- -// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +// Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -39,6 +39,7 @@ #include <streambuf> #include <unistd.h> #include <cstdio> +#include <bits/c++io.h> // For __c_file #ifdef _GLIBCXX_USE_WCHAR_T #include <cwchar> diff --git a/libstdc++-v3/include/std/fstream b/libstdc++-v3/include/std/fstream index adcf3eb..0687905 100644 --- a/libstdc++-v3/include/std/fstream +++ b/libstdc++-v3/include/std/fstream @@ -1,6 +1,7 @@ // File based streams -*- C++ -*- -// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, +// 2006, 2007 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -44,9 +45,8 @@ #include <istream> #include <ostream> #include <locale> // For codecvt -#include <cstdio> // For SEEK_SET, SEEK_CUR, SEEK_END, BUFSIZ -#include <bits/basic_file.h> -#include <bits/gthr.h> +#include <cstdio> // For BUFSIZ +#include <bits/basic_file.h> // For __basic_file, __c_lock _GLIBCXX_BEGIN_NAMESPACE(std) diff --git a/libstdc++-v3/include/std/ios b/libstdc++-v3/include/std/ios index 95d8450..e545b89 100644 --- a/libstdc++-v3/include/std/ios +++ b/libstdc++-v3/include/std/ios @@ -1,6 +1,7 @@ // Iostreams base classes -*- C++ -*- -// Copyright (C) 1997, 1998, 1999, 2001, 2002 Free Software Foundation, Inc. +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +// 2005, 2006, 2007 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -43,7 +44,6 @@ #include <iosfwd> #include <exception> // For ios_base::failure #include <bits/char_traits.h> // For char_traits, streamoff, streamsize, fpos -#include <cstdio> // For SEEK_SET, SEEK_CUR, SEEK_END #include <bits/localefwd.h> // For class locale #include <bits/ios_base.h> // For ios_base declarations. #include <streambuf> diff --git a/libstdc++-v3/include/std/iosfwd b/libstdc++-v3/include/std/iosfwd index f80d34b..bf23f18 100644 --- a/libstdc++-v3/include/std/iosfwd +++ b/libstdc++-v3/include/std/iosfwd @@ -44,7 +44,6 @@ #include <bits/c++config.h> #include <bits/c++locale.h> -#include <bits/c++io.h> #include <bits/stringfwd.h> // For string forward declarations. #include <bits/postypes.h> #include <bits/functexcept.h> |