summaryrefslogtreecommitdiff
path: root/gnu/lib/libg++/libstdc++/std/cstdlib.h
diff options
context:
space:
mode:
authortv <tv@NetBSD.org>1998-12-12 23:44:22 +0000
committertv <tv@NetBSD.org>1998-12-12 23:44:22 +0000
commit1343ef3796099e0c7f84581ec3582a02ee5b98c9 (patch)
tree8172a9d4c6fd3f123f2acd5d56e350e634b7bc6e /gnu/lib/libg++/libstdc++/std/cstdlib.h
parent178fc3cc0526167fde5cf49d0ac70983da4e3e7e (diff)
GC old gcc 2.7.2.2.
Diffstat (limited to 'gnu/lib/libg++/libstdc++/std/cstdlib.h')
-rw-r--r--gnu/lib/libg++/libstdc++/std/cstdlib.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/gnu/lib/libg++/libstdc++/std/cstdlib.h b/gnu/lib/libg++/libstdc++/std/cstdlib.h
deleted file mode 100644
index 51dc00a5af0..00000000000
--- a/gnu/lib/libg++/libstdc++/std/cstdlib.h
+++ /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 "std/cstdlib.h"
-#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