aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc')
-rw-r--r--libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc b/libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc
index c3181391850..c184b3fade2 100644
--- a/libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc
+++ b/libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc
@@ -1,6 +1,6 @@
// 1999-04-12 bkoz
-// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+// Copyright (C) 1999, 2000, 2002 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
@@ -500,7 +500,7 @@ bool test11()
// sanity check via 'C' library call
char* err;
- long l = strtol(cstrlit, &err, 0);
+ long l = std::strtol(cstrlit, &err, 0);
std::istringstream iss(cstrlit);
iss.setf(std::ios::fmtflags(0), std::ios::basefield);