// -*- C++ -*- header wrapper // Copyright (C) 1997-1999, 2000 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 2, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING. If not, write to the Free // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, // USA. // As a special exception, you may use this file as part of a free software // library without restriction. Specifically, if other files instantiate // templates or use macros or inline functions from this file, or you compile // this file and link it with other files to produce an executable, this // file does not by itself cause the resulting executable to be covered by // the GNU General Public License. This exception does not however // invalidate any other reasons why the executable file might be covered by // the GNU General Public License. // // ISO C++ 14882: 20.4.6 C library // // Function decls in this header are overloaded on the // extern "C"-ness of arguments. This is a rich ground // for compiler bugs. #ifndef _CPP_CSTDLIB #define _CPP_CSTDLIB 1 # include /* pick up NULL, size_t */ namespace _C_legacy { extern "C" { # define _IN_C_LEGACY_ # pragma system_header # include_next typedef int (*_C_cmp_fun_ptr)(const void*, const void*); // C fn ptr } const int _CPP_EXIT_SUCCESS_capture = int(EXIT_SUCCESS); const int _CPP_EXIT_FAILURE_capture = int(EXIT_FAILURE); const int _CPP_RAND_MAX_capture = int(RAND_MAX); inline int _CPP_MB_CUR_MAX_capture() { return int(MB_CUR_MAX); } // typedef size_t _CPP_size_t_capture; // typedef wchar_t _CPP_wchar_t_capture; typedef div_t _CPP_div_t_capture; typedef ldiv_t _CPP_ldiv_t_capture; namespace _C_shadow { } } // namespace _C_legacy:: # undef size_t # undef wchar_t # undef div_t # undef ldiv_t // // # undef NULL // # define NULL 0 # undef EXIT_SUCCESS # define EXIT_SUCCESS (::_C_legacy::_CPP_EXIT_SUCCESS_capture) # undef EXIT_FAILURE # define EXIT_FAILURE (::_C_legacy::_CPP_EXIT_FAILURE_capture) # undef RAND_MAX # define RAND_MAX (::_C_legacy::_CPP_RAND_MAX_capture) # undef MB_CUR_MAX # define MB_CUR_MAX (::_C_legacy::_CPP_MB_CUR_MAX_capture()) # undef atof # undef atoi # undef atol # undef strtod # undef strtol # undef strtoul # undef rand # undef srand # undef calloc # undef free # undef malloc # undef realloc # undef abort # undef atexit # undef exit # undef getenv # undef system # undef bsearch # undef qsort # undef abs # undef div # undef labs # undef ldiv #ifdef _GLIBCPP_USE_LONG_LONG # undef llabs # undef lldiv #endif # undef mblen # undef mbtowc # undef wctomb # undef mbstowcs # undef wcstombs namespace _C_legacy { namespace _C_shadow { // these come from // typedef ::_C_legacy::_CPP_size_t_capture size_t; // typedef ::_C_legacy::_CPP_wchar_t_capture wchar_t; } } namespace std { // Adopt C names into std:: // using ::_C_legacy::_C_shadow::size_t; // using ::_C_legacy::_C_shadow::wchar_t; typedef ::_C_legacy::_CPP_div_t_capture _CPP_div_t; struct div_t : _CPP_div_t {}; typedef ::_C_legacy::_CPP_ldiv_t_capture _CPP_ldiv_t; struct ldiv_t : _CPP_ldiv_t {}; // note: div_t and ldiv_t are still POD types // EXIT_SUCCESS, EXIT_FAILURE, RAND_MAX, MB_CUR_MAX, NULL using ::_C_legacy::atof; using ::_C_legacy::atoi; using ::_C_legacy::atol; using ::_C_legacy::strtod; using ::_C_legacy::strtol; using ::_C_legacy::strtoul; using ::_C_legacy::rand; using ::_C_legacy::srand; using ::_C_legacy::calloc; using ::_C_legacy::free; using ::_C_legacy::malloc; using ::_C_legacy::realloc; void abort(); // XXX must define this correctly for C++. #define _FUN_OVERLOAD_BUG // extern "C" funs declared void f(int (*)()) overload OK with C++ funs, // but not if declared void f(int (*)(void)). #if !defined(__GNUC__) || !defined(_FUN_OVERLOAD_BUG) using ::_C_legacy::atexit; // XXX must redefine this one! #endif int atexit(void (*)()); // XXX must define this. // More precisely, we need an extern "C" atexit() that // implements the correct semantics, but hides the link-name // atexit found in the C library, and a C++ atexit too. If // C and C++ calling conventions differ, each pointer must // be marked to be called using the proper convention. void exit(int __i) // XXX must define correctly for C++, like atexit(). { ::_C_legacy::exit(__i); } using ::_C_legacy::getenv; using ::_C_legacy::system; // XXX note that the raw conversion between C and C++ function // pointers may not be portable to some targets; those targets need // a forwarding function. #if !defined(__GNUC__) || !defined(_FUN_OVERLOAD_BUG) using ::_C_legacy::bsearch; // overload #endif inline void* bsearch(const void* __key, const void* __base, size_t __n, size_t __size, int (*__cmp)(const void*, const void*)) { return ::_C_legacy::bsearch(__key,__base,__n,__size, reinterpret_cast< ::_C_legacy::_C_cmp_fun_ptr>(__cmp)); } // XXX #if !defined(__GNUC__) || !defined(_FUN_OVERLOAD_BUG) using ::_C_legacy::qsort; // overload #endif inline void qsort(void* __base, size_t __n, size_t __size, int (*__cmp)(const void*, const void*)) { return ::_C_legacy::qsort(__base,__n,__size, reinterpret_cast< ::_C_legacy::_C_cmp_fun_ptr>(__cmp)); } // XXX inline int abs(int __x) { return __x >= 0 ? __x : -__x; } inline div_t div(int __n, int __d) { div_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } inline long labs(long __x) { return __x >= 0 ? __x : -__x; } inline long abs(long __x) { return __x >= 0 ? __x : -__x; } inline ldiv_t ldiv(long __n, long __d) { ldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } inline ldiv_t div(long __n, long __d) { ldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } #ifdef _GLIBCPP_USE_LONG_LONG inline long long llabs(long long __x) { return __x >= 0 ? __x : -__x; } inline long long abs(long long __x) { return __x >= 0 ? __x : -__x; } inline lldiv_t lldiv(long long __n, long long __d) { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } inline lldiv_t div(long long __n, long long __d) { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; } #endif using ::_C_legacy::mblen; using ::_C_legacy::mbtowc;; using ::_C_legacy::wctomb; using ::_C_legacy::mbstowcs; using ::_C_legacy::wcstombs; } // close namespace std:: namespace _C_legacy { namespace _C_shadow { using ::std::div_t; using ::std::ldiv_t; using ::std::abort; using ::std::atexit; using ::std::exit; using ::std::bsearch; using ::std::qsort; using ::std::abs; using ::std::div; using ::std::labs; using ::std::ldiv; #ifdef _GLIBCPP_USE_LONG_LONG using ::std::llabs; using ::std::lldiv; #endif } } # undef _IN_C_LEGACY_ #endif