cstdlib
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:0k
源码类别:

STL

开发平台:

Visual C++

  1. // The -*- C++ -*- standard library header.
  2. // This file is part of the GNU ANSI C++ Library.
  3. #ifndef __CSTDLIB__
  4. #define __CSTDLIB__
  5. #include <stdlib.h>
  6. #ifdef __GNUG__
  7. #pragma interface "cstdlib"
  8. #endif
  9. extern "C++" {
  10. #if _G_HAS_LABS
  11. inline long   abs(long x) { return labs (x); }
  12. #else
  13. inline long   abs(long x) { return x >= 0 ? x : -x; }
  14. #endif
  15. //inline ldiv_t div(long x, long y) { return ldiv (x, y); }
  16. } // extern "C++"
  17. #endif