diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2012-03-02 16:44:50 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2012-03-02 16:44:50 +0000 |
commit | 08c3865834b9965affb39529e6209002d0fe73e5 (patch) | |
tree | 660f4a33dac53be0d43b5cd312be24173b3e38d9 | |
parent | cbb6491d76c7aa81cdf5d3b3a81386129c5e2fce (diff) | |
download | gcc-08c3865834b9965affb39529e6209002d0fe73e5.zip gcc-08c3865834b9965affb39529e6209002d0fe73e5.tar.gz gcc-08c3865834b9965affb39529e6209002d0fe73e5.tar.bz2 |
cstdio: Remove extraneous extern.
2012-03-02 Benjamin Kosnik <bkoz@redhat.com>
* include/c_global/cstdio: Remove extraneous extern.
* include/c_std/cstdio: Same.
From-SVN: r184799
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/c_global/cstdio | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/c_std/cstdio | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6330c7b..d49c6a4 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2012-03-02 Benjamin Kosnik <bkoz@redhat.com> + + * include/c_global/cstdio: Remove extraneous extern. + * include/c_std/cstdio: Same. + 2012-03-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * config/abi/post/solaris2.8/baseline_symbols.txt: Regenerate. diff --git a/libstdc++-v3/include/c_global/cstdio b/libstdc++-v3/include/c_global/cstdio index d11743a..e648475 100644 --- a/libstdc++-v3/include/c_global/cstdio +++ b/libstdc++-v3/include/c_global/cstdio @@ -47,7 +47,7 @@ #define _GLIBCXX_CSTDIO 1 #ifndef _GLIBCXX_HAVE_GETS -extern "C" extern char* gets (char* __s) __attribute__((deprecated)); +extern "C" char* gets (char* __s) __attribute__((deprecated)); #endif // Get rid of those macros defined in <stdio.h> in lieu of real functions. diff --git a/libstdc++-v3/include/c_std/cstdio b/libstdc++-v3/include/c_std/cstdio index 1588fc9..d4f4732 100644 --- a/libstdc++-v3/include/c_std/cstdio +++ b/libstdc++-v3/include/c_std/cstdio @@ -46,7 +46,7 @@ #include <stdio.h> #ifndef _GLIBCXX_HAVE_GETS -extern "C" extern char* gets (char* __s) __attribute__((deprecated)); +extern "C" char* gets (char* __s) __attribute__((deprecated)); #endif // Get rid of those macros defined in <stdio.h> in lieu of real functions. |