From 22fdd65e5971ec8f15368ba77046ce8c6c3cb329 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Mon, 5 Feb 2001 01:38:47 +0000 Subject: 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 --- libstdc++/cstdlib | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 libstdc++/cstdlib (limited to 'libstdc++/cstdlib') 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 - -#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 -- cgit v1.1