* tree.c (walk_tree): Don't recurse into DECL_INITIAL or DECL_SIZE
[official-gcc.git] / libstdc++ / cstdlib
blobe7c1a5160a56ade965017f2659ef2155565aa44a
1 // The -*- C++ -*- standard library header.
2 // This file is part of the GNU ANSI C++ Library.
4 #ifndef __CSTDLIB__
5 #define __CSTDLIB__
6 #include <stdlib.h>
8 #ifdef __GNUG__
9 #pragma interface "cstdlib"
10 #endif
12 extern "C++" {
14 #if _G_HAS_LABS
15 inline long   abs(long x)               { return labs (x); }
16 #else
17 inline long   abs(long x)               { return x >= 0 ? x : -x; }
18 #endif
19 //inline ldiv_t div(long x, long y)     { return ldiv (x, y); }
21 } // extern "C++"
23 #endif