]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/c++98/compatibility.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / src / c++98 / compatibility.cc
CommitLineData
e4371cce 1// Compatibility symbols for previous versions -*- C++ -*-
2
f1717362 3// Copyright (C) 2005-2016 Free Software Foundation, Inc.
e4371cce 4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
e4371cce 9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
6bc9506f 16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
e4371cce 19
6bc9506f 20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
e4371cce 24
63f54259 25#define _GLIBCXX_USE_CXX11_ABI 0
e4371cce 26#include <bits/c++config.h>
27
eaf4b52d 28#if defined(_GLIBCXX_SYMVER_GNU) && defined(_GLIBCXX_SHARED) \
55f10c87 29 && defined(_GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE)\
30 && defined(_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT)
63a39322 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
1069247d 43#define _List_node_base _List_node_baseXX
e4371cce 44#endif
45
46#include <string>
47#include <istream>
48#include <fstream>
49#include <sstream>
d7fbb98b 50#include <cmath>
ee620c0d 51#include <ext/numeric_traits.h>
e4371cce 52
2948dd21 53namespace std _GLIBCXX_VISIBILITY(default)
54{
55_GLIBCXX_BEGIN_NAMESPACE_VERSION
e4371cce 56
1069247d 57 // std::istream ignore explicit specializations.
e4371cce 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);
aae73f19 68 if ( __n > 0 && __cerb)
e4371cce 69 {
5fe2af52 70 ios_base::iostate __err = ios_base::goodbit;
b1a09c64 71 __try
e4371cce 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()),
1069247d 86 streamsize(__n - _M_gcount));
e4371cce 87 if (__size > 1)
88 {
5affa0ef 89 __sb->__safe_gbump(__size);
e4371cce 90 _M_gcount += __size;
91 __c = __sb->sgetc();
92 }
93 else
94 {
95 ++_M_gcount;
96 __c = __sb->snextc();
97 }
98 }
ee620c0d 99 if (__n == __gnu_cxx::__numeric_traits<streamsize>::__max
e4371cce 100 && !traits_type::eq_int_type(__c, __eof))
101 {
ee620c0d 102 _M_gcount =
103 __gnu_cxx::__numeric_traits<streamsize>::__min;
e4371cce 104 __large_ignore = true;
105 }
106 else
107 break;
108 }
109
110 if (__large_ignore)
ee620c0d 111 _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__max;
e4371cce 112
113 if (traits_type::eq_int_type(__c, __eof))
114 __err |= ios_base::eofbit;
115 }
b1a09c64 116 __catch(__cxxabiv1::__forced_unwind&)
cb4b339b 117 {
118 this->_M_setstate(ios_base::badbit);
119 __throw_exception_again;
120 }
b1a09c64 121 __catch(...)
e4371cce 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);
aae73f19 140 if (__n > 0 && __cerb)
e4371cce 141 {
5fe2af52 142 ios_base::iostate __err = ios_base::goodbit;
b1a09c64 143 __try
e4371cce 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()),
1069247d 157 streamsize(__n - _M_gcount));
e4371cce 158 if (__size > 1)
159 {
5affa0ef 160 __sb->__safe_gbump(__size);
e4371cce 161 _M_gcount += __size;
162 __c = __sb->sgetc();
163 }
164 else
165 {
166 ++_M_gcount;
167 __c = __sb->snextc();
168 }
169 }
ee620c0d 170 if (__n == __gnu_cxx::__numeric_traits<streamsize>::__max
e4371cce 171 && !traits_type::eq_int_type(__c, __eof))
172 {
ee620c0d 173 _M_gcount =
174 __gnu_cxx::__numeric_traits<streamsize>::__min;
e4371cce 175 __large_ignore = true;
176 }
177 else
178 break;
179 }
180
181 if (__large_ignore)
ee620c0d 182 _M_gcount = __gnu_cxx::__numeric_traits<streamsize>::__max;
e4371cce 183
184 if (traits_type::eq_int_type(__c, __eof))
185 __err |= ios_base::eofbit;
186 }
b1a09c64 187 __catch(__cxxabiv1::__forced_unwind&)
cb4b339b 188 {
189 this->_M_setstate(ios_base::badbit);
190 __throw_exception_again;
191 }
b1a09c64 192 __catch(...)
e4371cce 193 { this->_M_setstate(ios_base::badbit); }
194 if (__err)
195 this->setstate(__err);
196 }
197 return *this;
198 }
199#endif
1069247d 200
2948dd21 201_GLIBCXX_END_NAMESPACE_VERSION
08709c1d 202} // namespace std
1069247d 203
e4371cce 204
205// NB: These symbols renames should go into the shared library only,
206// and only those shared libraries that support versioning.
eaf4b52d 207#if defined(_GLIBCXX_SYMVER_GNU) && defined(_GLIBCXX_SHARED) \
55f10c87 208 && defined(_GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE) \
209 && defined(_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT)
e4371cce 210
211/* gcc-3.4.4
212_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv
213_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv
214 */
1069247d 215
2948dd21 216namespace std _GLIBCXX_VISIBILITY(default)
217{
218_GLIBCXX_BEGIN_NAMESPACE_VERSION
1069247d 219
e4371cce 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
1069247d 229
2948dd21 230_GLIBCXX_END_NAMESPACE_VERSION
08709c1d 231} // namespace std
1069247d 232
e4371cce 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 */
2948dd21 263namespace std _GLIBCXX_VISIBILITY(default)
264{
265_GLIBCXX_BEGIN_NAMESPACE_VERSION
1069247d 266
e4371cce 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
1069247d 358
2948dd21 359_GLIBCXX_END_NAMESPACE_VERSION
08709c1d 360} // namespace std
e4371cce 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
63a39322 368#define _GLIBCXX_3_4_SYMVER(XXname, name) \
e4371cce 369 extern "C" void \
370 _X##name() \
63a39322 371 __attribute__ ((alias(#XXname))); \
e4371cce 372 asm (".symver " "_X" #name "," #name "@GLIBCXX_3.4");
373
63a39322 374#define _GLIBCXX_3_4_5_SYMVER(XXname, name) \
e4371cce 375 extern "C" void \
376 _Y##name() \
63a39322 377 __attribute__ ((alias(#XXname))); \
e4371cce 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
e4371cce 384#include <bits/compatibility.h>
385#undef _GLIBCXX_APPLY_SYMVER
e4371cce 386
387#define _GLIBCXX_APPLY_SYMVER _GLIBCXX_3_4_5_SYMVER
e4371cce 388#include <bits/compatibility.h>
389#undef _GLIBCXX_APPLY_SYMVER
e4371cce 390
10c73e3f 391
1069247d 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_;
1069247d 398*/
2948dd21 399#include "list.cc"
400_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX7_M_hookEPS0_, \
1069247d 401_ZN10__gnu_norm15_List_node_base4hookEPS0_, \
402GLIBCXX_3.4)
403
2948dd21 404_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX4swapERS0_S1_, \
1069247d 405_ZN10__gnu_norm15_List_node_base4swapERS0_S1_, \
406GLIBCXX_3.4)
407
2948dd21 408_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX9_M_unhookEv, \
1069247d 409_ZN10__gnu_norm15_List_node_base6unhookEv, \
410GLIBCXX_3.4)
411
2948dd21 412_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX10_M_reverseEv, \
1069247d 413_ZN10__gnu_norm15_List_node_base7reverseEv, \
414GLIBCXX_3.4)
415
2948dd21 416_GLIBCXX_ASM_SYMVER(_ZNSt8__detail17_List_node_baseXX11_M_transferEPS0_S1_, \
1069247d 417_ZN10__gnu_norm15_List_node_base8transferEPS0_S1_, \
418GLIBCXX_3.4)
10c73e3f 419#undef _List_node_base
1069247d 420
d7fbb98b 421// gcc-4.1.0
be4a1428 422// Long double versions of "C" math functions.
423#if defined (_GLIBCXX_LONG_DOUBLE_COMPAT) \
7e5d96a0 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) \
be4a1428 429
d7fbb98b 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)
1069247d 437
d7fbb98b 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);
e4371cce 482#endif
d7fbb98b 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";
6de1562d 520extern __attribute__((used, weak)) const void * const _ZTIe[2]
1d0a4a14 521 = { reinterpret_cast<const void *>
522 (&_ZTVN10__cxxabiv123__fundamental_type_infoE[2]),
523 reinterpret_cast<const void *>(_ZTSe) };
6de1562d 524extern __attribute__((used, weak)) const void * const _ZTIPe[4]
1d0a4a14 525 = { reinterpret_cast<const void *>
526 (&_ZTVN10__cxxabiv119__pointer_type_infoE[2]),
527 reinterpret_cast<const void *>(_ZTSPe),
528 reinterpret_cast<const void *>(0L),
529 reinterpret_cast<const void *>(_ZTIe) };
6de1562d 530extern __attribute__((used, weak)) const void * const _ZTIPKe[4]
1d0a4a14 531 = { reinterpret_cast<const void *>
532 (&_ZTVN10__cxxabiv119__pointer_type_infoE[2]),
533 reinterpret_cast<const void *>(_ZTSPKe),
534 reinterpret_cast<const void *>(1L),
535 reinterpret_cast<const void *>(_ZTIe) };
d7fbb98b 536#endif // _GLIBCXX_LONG_DOUBLE_COMPAT
537
871b22db 538#ifdef _GLIBCXX_SYMVER_DARWIN
eaf4b52d 539#if (defined(__ppc__) || defined(__ppc64__)) && defined(_GLIBCXX_SHARED)
069fa933 540/* __eprintf shouldn't have been made visible from libstdc++, or
541 anywhere, but on Mac OS X 10.4 it was defined in
542 libstdc++.6.0.3.dylib; so on that platform we have to keep defining
543 it to keep binary compatibility. We can't just put the libgcc
544 version in the export list, because that doesn't work; once a
545 symbol is marked as hidden, it stays that way. */
546
547#include <cstdio>
548#include <cstdlib>
549
550using namespace std;
551
552extern "C" void
1069247d 553__eprintf(const char *string, const char *expression,
554 unsigned int line, const char *filename)
069fa933 555{
1069247d 556 fprintf(stderr, string, expression, line, filename);
557 fflush(stderr);
558 abort();
069fa933 559}
560#endif
871b22db 561#endif