diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-26 00:24:02 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-26 00:24:02 +0000 |
commit | 9c8f076b9eb6d9a6f04bf033c432a15b13870d2d (patch) | |
tree | 2afa56c934269974a6d0e35cfffd99f27f7659f7 /gcc/gcov-dump.c | |
parent | 4681333d7624f4087fd64ffd895dc24e63f2bced (diff) | |
download | gcc-9c8f076b9eb6d9a6f04bf033c432a15b13870d2d.tar.gz |
* collect2.c, gcc.c, gcov-dump.c, gcov.c, gen-protos.c,
gensupport.c, protoize.c, toplev.c: Replace calls to
`unlock_stream' with `unlock_std_streams'.
java:
* gjavah.c, jcf-dump.c, jv-scan.c, jvgenmain.c: Replace calls
to `unlock_stream' with `unlock_std_streams'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98753 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcov-dump.c')
-rw-r--r-- | gcc/gcov-dump.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c index 514004e771a..eb1e99f293e 100644 --- a/gcc/gcov-dump.c +++ b/gcc/gcov-dump.c @@ -78,9 +78,7 @@ main (int argc ATTRIBUTE_UNUSED, char **argv) int opt; /* Unlock the stdio streams. */ - unlock_stream (stdin); - unlock_stream (stdout); - unlock_stream (stderr); + unlock_std_streams (); while ((opt = getopt_long (argc, argv, "hlpv", options, NULL)) != -1) { |