diff options
author | Mark Mitchell <mark@codesourcery.com> | 2001-02-05 01:38:47 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-02-05 01:38:47 +0000 |
commit | 22fdd65e5971ec8f15368ba77046ce8c6c3cb329 (patch) | |
tree | 177855d276d1c216598a7ec68ce2bb1412e384a4 /libstdc++/cstdlib | |
parent | 4322eb6c0ee5bac01fbca9846438084d33367120 (diff) | |
download | gcc-22fdd65e5971ec8f15368ba77046ce8c6c3cb329.zip gcc-22fdd65e5971ec8f15368ba77046ce8c6c3cb329.tar.gz gcc-22fdd65e5971ec8f15368ba77046ce8c6c3cb329.tar.bz2 |
Remove V2 C++ library.
* configure.in: Remove --enable-libstdcxx_v3 support.
* Makefile.in (site.exp): Always set HAVE_LIBSTDCXX_V3.
* configure.in: Remove --enable-libstdcxx_v3 support.
* configure: Regenerated.
From-SVN: r39445
Diffstat (limited to 'libstdc++/cstdlib')
-rw-r--r-- | libstdc++/cstdlib | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libstdc++/cstdlib b/libstdc++/cstdlib deleted file mode 100644 index e7c1a516..0000000 --- a/libstdc++/cstdlib +++ /dev/null @@ -1,23 +0,0 @@ -// The -*- C++ -*- standard library header. -// This file is part of the GNU ANSI C++ Library. - -#ifndef __CSTDLIB__ -#define __CSTDLIB__ -#include <stdlib.h> - -#ifdef __GNUG__ -#pragma interface "cstdlib" -#endif - -extern "C++" { - -#if _G_HAS_LABS -inline long abs(long x) { return labs (x); } -#else -inline long abs(long x) { return x >= 0 ? x : -x; } -#endif -//inline ldiv_t div(long x, long y) { return ldiv (x, y); } - -} // extern "C++" - -#endif |