]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/compatibility.cc
re PR libstdc++/47921 (pbump will overflow when input n is larger than 2G-1)
[thirdparty/gcc.git] / libstdc++-v3 / src / compatibility.cc
CommitLineData
bb2b2a24
BK
1// Compatibility symbols for previous versions -*- C++ -*-
2
12ffa228 3// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
bb2b2a24
BK
4// Free Software Foundation, Inc.
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
748086b7 9// Free Software Foundation; either version 3, or (at your option)
bb2b2a24
BK
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
748086b7
JJ
17// Under Section 7 of GPL version 3, you are granted additional
18// permissions described in the GCC Runtime Library Exception, version
19// 3.1, as published by the Free Software Foundation.
bb2b2a24 20
748086b7
JJ
21// You should have received a copy of the GNU General Public License and
22// a copy of the GCC Runtime Library Exception along with this program;
23// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24// <http://www.gnu.org/licenses/>.
bb2b2a24
BK
25
26#include <bits/c++config.h>
27
1f93f687 28#if defined(_GLIBCXX_SYMVER_GNU) && defined(PIC) \
c18dc5cc
RO
29 && defined(_GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE)\
30 && defined(_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT)
462ec415
JJ
31#define istreambuf_iterator istreambuf_iteratorXX
32#define basic_fstream basic_fstreamXX
33#define basic_ifstream basic_ifstreamXX
34#define basic_ofstream basic_ofstreamXX
35#define _M_copy(a, b, c) _M_copyXX(a, b, c)
36#define _M_move(a, b, c) _M_moveXX(a, b, c)
37#define _M_assign(a, b, c) _M_assignXX(a, b, c)
38#define _M_disjunct(a) _M_disjunctXX(a)
39#define _M_check_length(a, b, c) _M_check_lengthXX(a, b, c)
40#define _M_set_length_and_sharable(a) _M_set_length_and_sharableXX(a)
41#define ignore ignoreXX
42#define eq eqXX
3cbc7af0 43#define _List_node_base _List_node_baseXX
bb2b2a24
BK
44#endif
45
46#include <string>
47#include <istream>
48#include <fstream>
49#include <sstream>
6defecc2 50#include <cmath>
6725add5 51#include <ext/numeric_traits.h>
bb2b2a24 52
12ffa228
BK
53namespace std _GLIBCXX_VISIBILITY(default)
54{
55_GLIBCXX_BEGIN_NAMESPACE_VERSION
bb2b2a24 56
3cbc7af0 57 // std::istream ignore explicit specializations.
bb2b2a24
BK
58 template<>
59 basic_istream<char>&
60 basic_istream<char>::
61 ignore(streamsize __n)
62 {
63 if (__n == 1)
64 return ignore();
65
66 _M_gcount = 0;
67 sentry __cerb(*this, true);
880b527f 68 if ( __n > 0 && __cerb)
bb2b2a24 69 {
6f0398bb 70 ios_base::iostate __err = ios_base::goodbit;
bc2631e0 71 __try
bb2b2a24
BK
72 {
73 const int_type __eof = traits_type::eof();
74 __streambuf_type* __sb = this->rdbuf();
75 int_type __c = __sb->sgetc();
76
77 // See comment in istream.tcc.
78 bool __large_ignore = false;
79 while (true)
80 {
81 while (_M_gcount < __n
82 && !traits_type::eq_int_type(__c, __eof))
83 {
84 streamsize __size = std::min(streamsize(__sb->egptr()
85 - __sb->gptr()),
3cbc7af0 86 streamsize(__n - _M_gcount));
bb2b2a24
BK
87 if (__size > 1)
88 {
1139a735 89 __sb->__safe_gbump(__size);
bb2b2a24
BK
90 _M_gcount += __size;
91 __c = __sb->sgetc();
92 }
93 else
94 {
95 ++_M_gcount;
96 __c = __sb->snextc();
97 }
98 }
6725add5 99 if (__n == __gnu_cxx::__numeric_traits<streamsize>::__max
bb2b2a24
BK
100 && !traits_type::eq_int_type(__c, __eof))
101 {
6725add5
PC
102 _M_gcount =
103 __gnu_cxx::__numeric_traits<streamsize>::__min;
bb2b2a24
BK
104 __large_ignore = true;
105 }
106 else
107 break;
108 }
109
110 if (__large_ignore)
6725add5 111 _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__max;
bb2b2a24
BK
112
113 if (traits_type::eq_int_type(__c, __eof))
114 __err |= ios_base::eofbit;
115 }
bc2631e0 116 __catch(__cxxabiv1::__forced_unwind&)
d05f74f1
JM
117 {
118 this->_M_setstate(ios_base::badbit);
119 __throw_exception_again;
120 }
bc2631e0 121 __catch(...)
bb2b2a24
BK
122 { this->_M_setstate(ios_base::badbit); }
123 if (__err)
124 this->setstate(__err);
125 }
126 return *this;
127 }
128
129#ifdef _GLIBCXX_USE_WCHAR_T
130 template<>
131 basic_istream<wchar_t>&
132 basic_istream<wchar_t>::
133 ignore(streamsize __n)
134 {
135 if (__n == 1)
136 return ignore();
137
138 _M_gcount = 0;
139 sentry __cerb(*this, true);
880b527f 140 if (__n > 0 && __cerb)
bb2b2a24 141 {
6f0398bb 142 ios_base::iostate __err = ios_base::goodbit;
bc2631e0 143 __try
bb2b2a24
BK
144 {
145 const int_type __eof = traits_type::eof();
146 __streambuf_type* __sb = this->rdbuf();
147 int_type __c = __sb->sgetc();
148
149 bool __large_ignore = false;
150 while (true)
151 {
152 while (_M_gcount < __n
153 && !traits_type::eq_int_type(__c, __eof))
154 {
155 streamsize __size = std::min(streamsize(__sb->egptr()
156 - __sb->gptr()),
3cbc7af0 157 streamsize(__n - _M_gcount));
bb2b2a24
BK
158 if (__size > 1)
159 {
1139a735 160 __sb->__safe_gbump(__size);
bb2b2a24
BK
161 _M_gcount += __size;
162 __c = __sb->sgetc();
163 }
164 else
165 {
166 ++_M_gcount;
167 __c = __sb->snextc();
168 }
169 }
6725add5 170 if (__n == __gnu_cxx::__numeric_traits<streamsize>::__max
bb2b2a24
BK
171 && !traits_type::eq_int_type(__c, __eof))
172 {
6725add5
PC
173 _M_gcount =
174 __gnu_cxx::__numeric_traits<streamsize>::__min;
bb2b2a24
BK
175 __large_ignore = true;
176 }
177 else
178 break;
179 }
180
181 if (__large_ignore)
6725add5 182 _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__max;
bb2b2a24
BK
183
184 if (traits_type::eq_int_type(__c, __eof))
185 __err |= ios_base::eofbit;
186 }
bc2631e0 187 __catch(__cxxabiv1::__forced_unwind&)
d05f74f1
JM
188 {
189 this->_M_setstate(ios_base::badbit);
190 __throw_exception_again;
191 }
bc2631e0 192 __catch(...)
bb2b2a24
BK
193 { this->_M_setstate(ios_base::badbit); }
194 if (__err)
195 this->setstate(__err);
196 }
197 return *this;
198 }
199#endif
3cbc7af0 200
12ffa228
BK
201_GLIBCXX_END_NAMESPACE_VERSION
202} // namespace
3cbc7af0 203
bb2b2a24
BK
204
205// NB: These symbols renames should go into the shared library only,
206// and only those shared libraries that support versioning.
1f93f687 207#if defined(_GLIBCXX_SYMVER_GNU) && defined(PIC) \
c18dc5cc
RO
208 && defined(_GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE) \
209 && defined(_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT)
bb2b2a24
BK
210
211/* gcc-3.4.4
212_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv
213_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv
214 */
3cbc7af0 215
12ffa228
BK
216namespace std _GLIBCXX_VISIBILITY(default)
217{
218_GLIBCXX_BEGIN_NAMESPACE_VERSION
3cbc7af0 219
bb2b2a24
BK
220 template
221 istreambuf_iterator<char>&
222 istreambuf_iterator<char>::operator++();
223
224#ifdef _GLIBCXX_USE_WCHAR_T
225 template
226 istreambuf_iterator<wchar_t>&
227 istreambuf_iterator<wchar_t>::operator++();
228#endif
3cbc7af0 229
12ffa228
BK
230_GLIBCXX_END_NAMESPACE_VERSION
231} // namespace
3cbc7af0 232
bb2b2a24
BK
233
234/* gcc-4.0.0
235_ZNSs4_Rep26_M_set_length_and_sharableEj
236_ZNSs7_M_copyEPcPKcj
237_ZNSs7_M_moveEPcPKcj
238_ZNSs9_M_assignEPcjc
239_ZNKSs11_M_disjunctEPKc
240_ZNKSs15_M_check_lengthEjjPKc
241_ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEj
242_ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwj
243_ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwj
244_ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwjw
245_ZNKSbIwSt11char_traitsIwESaIwEE11_M_disjunctEPKw
246_ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEjjPKc
247
248_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv
249_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv
250_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv
251_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv
252_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv
253_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv
254
255_ZNSi6ignoreEi
256_ZNSi6ignoreEv
257_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEi
258_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEv
259
260_ZNSt11char_traitsIcE2eqERKcS2_
261_ZNSt11char_traitsIwE2eqERKwS2_
262 */
12ffa228
BK
263namespace std _GLIBCXX_VISIBILITY(default)
264{
265_GLIBCXX_BEGIN_NAMESPACE_VERSION
3cbc7af0 266
bb2b2a24
BK
267 // std::char_traits is explicitly specialized
268 bool (* __p1)(const char&, const char&) = &char_traits<char>::eq;
269
270 // std::string
271 template
272 void
273 basic_string<char>::_M_copy(char*, const char*, size_t);
274
275 template
276 void
277 basic_string<char>::_M_move(char*, const char*, size_t);
278
279 template
280 void
281 basic_string<char>::_M_assign(char*, size_t, char);
282
283 template
284 bool
285 basic_string<char>::_M_disjunct(const char*) const;
286
287 template
288 void
289 basic_string<char>::_M_check_length(size_t, size_t, const char*) const;
290
291 template
292 void
293 basic_string<char>::_Rep::_M_set_length_and_sharable(size_t);
294
295
296 // std::istream
297 template
298 basic_istream<char>&
299 basic_istream<char>::ignore();
300
301 template
302 bool
303 basic_fstream<char>::is_open() const;
304
305 template
306 bool
307 basic_ifstream<char>::is_open() const;
308
309 template
310 bool
311 basic_ofstream<char>::is_open() const;
312
313#ifdef _GLIBCXX_USE_WCHAR_T
314 bool (* __p2)(const wchar_t&, const wchar_t&) = &char_traits<wchar_t>::eq;
315
316 // std::wstring
317 template
318 void
319 basic_string<wchar_t>::_M_copy(wchar_t*, const wchar_t*, size_t);
320
321 template
322 void
323 basic_string<wchar_t>::_M_move(wchar_t*, const wchar_t*, size_t);
324
325 template
326 void
327 basic_string<wchar_t>::_M_assign(wchar_t*, size_t, wchar_t);
328
329 template
330 bool
331 basic_string<wchar_t>::_M_disjunct(const wchar_t*) const;
332
333 template
334 void
335 basic_string<wchar_t>::_M_check_length(size_t, size_t,
336 const char*) const;
337
338 template
339 void
340 basic_string<wchar_t>::_Rep::_M_set_length_and_sharable(size_t);
341
342 template
343 basic_istream<wchar_t>&
344 basic_istream<wchar_t>::ignore();
345
346 template
347 bool
348 basic_fstream<wchar_t>::is_open() const;
349
350 template
351 bool
352 basic_ifstream<wchar_t>::is_open() const;
353
354 template
355 bool
356 basic_ofstream<wchar_t>::is_open() const;
357#endif
3cbc7af0 358
12ffa228
BK
359_GLIBCXX_END_NAMESPACE_VERSION
360} // namespace
bb2b2a24
BK
361
362// The rename syntax for default exported names is
363// asm (".symver name1,exportedname@GLIBCXX_3.4")
364// asm (".symver name2,exportedname@@GLIBCXX_3.4.5")
365// In the future, GLIBCXX_ABI > 6 should remove all uses of
366// _GLIBCXX_*_SYMVER macros in this file.
367
462ec415 368#define _GLIBCXX_3_4_SYMVER(XXname, name) \
bb2b2a24
BK
369 extern "C" void \
370 _X##name() \
462ec415 371 __attribute__ ((alias(#XXname))); \
bb2b2a24
BK
372 asm (".symver " "_X" #name "," #name "@GLIBCXX_3.4");
373
462ec415 374#define _GLIBCXX_3_4_5_SYMVER(XXname, name) \
bb2b2a24
BK
375 extern "C" void \
376 _Y##name() \
462ec415 377 __attribute__ ((alias(#XXname))); \
bb2b2a24
BK
378 asm (".symver " "_Y" #name "," #name "@@GLIBCXX_3.4.5");
379
380#define _GLIBCXX_ASM_SYMVER(cur, old, version) \
381 asm (".symver " #cur "," #old "@@" #version);
382
383#define _GLIBCXX_APPLY_SYMVER _GLIBCXX_3_4_SYMVER
bb2b2a24
BK
384#include <bits/compatibility.h>
385#undef _GLIBCXX_APPLY_SYMVER
bb2b2a24
BK
386
387#define _GLIBCXX_APPLY_SYMVER _GLIBCXX_3_4_5_SYMVER
bb2b2a24
BK
388#include <bits/compatibility.h>
389#undef _GLIBCXX_APPLY_SYMVER
bb2b2a24 390
45f388bb 391
3cbc7af0
BK
392/* gcc-3.4.0
393_ZN10__gnu_norm15_List_node_base4hookEPS0_;
394_ZN10__gnu_norm15_List_node_base4swapERS0_S1_;
395_ZN10__gnu_norm15_List_node_base6unhookEv;
396_ZN10__gnu_norm15_List_node_base7reverseEv;
397_ZN10__gnu_norm15_List_node_base8transferEPS0_S1_;
3cbc7af0 398*/
12ffa228
BK
399#include "list.cc"
400_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX7_M_hookEPS0_, \
3cbc7af0
BK
401_ZN10__gnu_norm15_List_node_base4hookEPS0_, \
402GLIBCXX_3.4)
403
12ffa228 404_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX4swapERS0_S1_, \
3cbc7af0
BK
405_ZN10__gnu_norm15_List_node_base4swapERS0_S1_, \
406GLIBCXX_3.4)
407
12ffa228 408_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX9_M_unhookEv, \
3cbc7af0
BK
409_ZN10__gnu_norm15_List_node_base6unhookEv, \
410GLIBCXX_3.4)
411
12ffa228 412_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX10_M_reverseEv, \
3cbc7af0
BK
413_ZN10__gnu_norm15_List_node_base7reverseEv, \
414GLIBCXX_3.4)
415
12ffa228 416_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX11_M_transferEPS0_S1_, \
3cbc7af0
BK
417_ZN10__gnu_norm15_List_node_base8transferEPS0_S1_, \
418GLIBCXX_3.4)
45f388bb 419#undef _List_node_base
3cbc7af0 420
6defecc2 421// gcc-4.1.0
adc8a1e3
BK
422// Long double versions of "C" math functions.
423#if defined (_GLIBCXX_LONG_DOUBLE_COMPAT) \
a4a2087c
MK
424 || (defined (__arm__) && defined (__linux__) && defined (__ARM_EABI__)) \
425 || (defined (__hppa__) && defined (__linux__)) \
426 || (defined (__m68k__) && defined (__mcoldfire__) && defined (__linux__)) \
427 || (defined (__mips__) && defined (_ABIO32) && defined (__linux__)) \
428 || (defined (__sh__) && defined (__linux__) && __SIZEOF_SIZE_T__ == 4) \
adc8a1e3 429
6defecc2
JJ
430#define _GLIBCXX_MATHL_WRAPPER(name, argdecl, args, ver) \
431extern "C" double \
432__ ## name ## l_wrapper argdecl \
433{ \
434 return name args; \
435} \
436asm (".symver __" #name "l_wrapper, " #name "l@" #ver)
3cbc7af0 437
6defecc2
JJ
438#define _GLIBCXX_MATHL_WRAPPER1(name, ver) \
439 _GLIBCXX_MATHL_WRAPPER (name, (double x), (x), ver)
440
441#define _GLIBCXX_MATHL_WRAPPER2(name, ver) \
442 _GLIBCXX_MATHL_WRAPPER (name, (double x, double y), (x, y), ver)
443
444#ifdef _GLIBCXX_HAVE_ACOSL
445_GLIBCXX_MATHL_WRAPPER1 (acos, GLIBCXX_3.4.3);
446#endif
447#ifdef _GLIBCXX_HAVE_ASINL
448_GLIBCXX_MATHL_WRAPPER1 (asin, GLIBCXX_3.4.3);
449#endif
450#ifdef _GLIBCXX_HAVE_ATAN2L
451_GLIBCXX_MATHL_WRAPPER2 (atan2, GLIBCXX_3.4);
452#endif
453#ifdef _GLIBCXX_HAVE_ATANL
454_GLIBCXX_MATHL_WRAPPER1 (atan, GLIBCXX_3.4.3);
455#endif
456#ifdef _GLIBCXX_HAVE_CEILL
457_GLIBCXX_MATHL_WRAPPER1 (ceil, GLIBCXX_3.4.3);
458#endif
459#ifdef _GLIBCXX_HAVE_COSHL
460_GLIBCXX_MATHL_WRAPPER1 (cosh, GLIBCXX_3.4);
461#endif
462#ifdef _GLIBCXX_HAVE_COSL
463_GLIBCXX_MATHL_WRAPPER1 (cos, GLIBCXX_3.4);
464#endif
465#ifdef _GLIBCXX_HAVE_EXPL
466_GLIBCXX_MATHL_WRAPPER1 (exp, GLIBCXX_3.4);
467#endif
468#ifdef _GLIBCXX_HAVE_FLOORL
469_GLIBCXX_MATHL_WRAPPER1 (floor, GLIBCXX_3.4.3);
470#endif
471#ifdef _GLIBCXX_HAVE_FMODL
472_GLIBCXX_MATHL_WRAPPER2 (fmod, GLIBCXX_3.4.3);
473#endif
474#ifdef _GLIBCXX_HAVE_FREXPL
475_GLIBCXX_MATHL_WRAPPER (frexp, (double x, int *y), (x, y), GLIBCXX_3.4.3);
476#endif
477#ifdef _GLIBCXX_HAVE_HYPOTL
478_GLIBCXX_MATHL_WRAPPER2 (hypot, GLIBCXX_3.4);
479#endif
480#ifdef _GLIBCXX_HAVE_LDEXPL
481_GLIBCXX_MATHL_WRAPPER (ldexp, (double x, int y), (x, y), GLIBCXX_3.4.3);
bb2b2a24 482#endif
6defecc2
JJ
483#ifdef _GLIBCXX_HAVE_LOG10L
484_GLIBCXX_MATHL_WRAPPER1 (log10, GLIBCXX_3.4);
485#endif
486#ifdef _GLIBCXX_HAVE_LOGL
487_GLIBCXX_MATHL_WRAPPER1 (log, GLIBCXX_3.4);
488#endif
489#ifdef _GLIBCXX_HAVE_MODFL
490_GLIBCXX_MATHL_WRAPPER (modf, (double x, double *y), (x, y), GLIBCXX_3.4.3);
491#endif
492#ifdef _GLIBCXX_HAVE_POWL
493_GLIBCXX_MATHL_WRAPPER2 (pow, GLIBCXX_3.4);
494#endif
495#ifdef _GLIBCXX_HAVE_SINHL
496_GLIBCXX_MATHL_WRAPPER1 (sinh, GLIBCXX_3.4);
497#endif
498#ifdef _GLIBCXX_HAVE_SINL
499_GLIBCXX_MATHL_WRAPPER1 (sin, GLIBCXX_3.4);
500#endif
501#ifdef _GLIBCXX_HAVE_SQRTL
502_GLIBCXX_MATHL_WRAPPER1 (sqrt, GLIBCXX_3.4);
503#endif
504#ifdef _GLIBCXX_HAVE_TANHL
505_GLIBCXX_MATHL_WRAPPER1 (tanh, GLIBCXX_3.4);
506#endif
507#ifdef _GLIBCXX_HAVE_TANL
508_GLIBCXX_MATHL_WRAPPER1 (tan, GLIBCXX_3.4);
509#endif
510#endif // _GLIBCXX_LONG_DOUBLE_COMPAT
511
512#endif
513
514#ifdef _GLIBCXX_LONG_DOUBLE_COMPAT
515extern void *_ZTVN10__cxxabiv123__fundamental_type_infoE[];
516extern void *_ZTVN10__cxxabiv119__pointer_type_infoE[];
517extern __attribute__((used, weak)) const char _ZTSe[2] = "e";
518extern __attribute__((used, weak)) const char _ZTSPe[3] = "Pe";
519extern __attribute__((used, weak)) const char _ZTSPKe[4] = "PKe";
42016207 520extern __attribute__((used, weak)) const void * const _ZTIe[2]
6defecc2
JJ
521 = { (void *) &_ZTVN10__cxxabiv123__fundamental_type_infoE[2],
522 (void *) _ZTSe };
42016207 523extern __attribute__((used, weak)) const void * const _ZTIPe[4]
6defecc2
JJ
524 = { (void *) &_ZTVN10__cxxabiv119__pointer_type_infoE[2],
525 (void *) _ZTSPe, (void *) 0L, (void *) _ZTIe };
42016207 526extern __attribute__((used, weak)) const void * const _ZTIPKe[4]
6defecc2
JJ
527 = { (void *) &_ZTVN10__cxxabiv119__pointer_type_infoE[2],
528 (void *) _ZTSPKe, (void *) 1L, (void *) _ZTIe };
529#endif // _GLIBCXX_LONG_DOUBLE_COMPAT
530
fb5c309d 531#ifdef _GLIBCXX_SYMVER_DARWIN
6defecc2 532#if (defined(__ppc__) || defined(__ppc64__)) && defined(PIC)
f9314d01
GK
533/* __eprintf shouldn't have been made visible from libstdc++, or
534 anywhere, but on Mac OS X 10.4 it was defined in
535 libstdc++.6.0.3.dylib; so on that platform we have to keep defining
536 it to keep binary compatibility. We can't just put the libgcc
537 version in the export list, because that doesn't work; once a
538 symbol is marked as hidden, it stays that way. */
539
540#include <cstdio>
541#include <cstdlib>
542
543using namespace std;
544
545extern "C" void
3cbc7af0
BK
546__eprintf(const char *string, const char *expression,
547 unsigned int line, const char *filename)
f9314d01 548{
3cbc7af0
BK
549 fprintf(stderr, string, expression, line, filename);
550 fflush(stderr);
551 abort();
f9314d01
GK
552}
553#endif
fb5c309d 554#endif