d068332b88
Code is from cxx.uclibc.org, modified by catty to implement c++17 features
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
/* Copyright (C) 2025 Catty Steve
|
|
|
|
This file is part of the uClibc++ Library.
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, 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
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
TODO: Currently untested
|
|
*/
|
|
#include <cstdint>
|
|
#include <inttypes.h>
|
|
|
|
namespace std{
|
|
// types
|
|
using ::imaxdiv_t;
|
|
|
|
// functions
|
|
using ::imaxabs;
|
|
using ::imaxdiv;
|
|
|
|
// GCC does not support extended integer types
|
|
// intmax_t abs(intmax_t)
|
|
// imaxdiv_t div(intmax_t, intmax_t)
|
|
|
|
using ::strtoimax;
|
|
using ::strtoumax;
|
|
|
|
|
|
// Untested
|
|
using ::wcstoimax;
|
|
using ::wcstoumax;
|
|
}
|