1 // The -*- C++ -*- standard library header.
2 // This file is part of the GNU ANSI C++ Library.
9 #pragma interface "cstdlib"
15 inline long abs(long x) { return labs (x); }
17 inline long abs(long x) { return x >= 0 ? x : -x; }
19 //inline ldiv_t div(long x, long y) { return ldiv (x, y); }