Update copyright in libstdc++-v3.
[official-gcc.git] / libstdc++-v3 / include / c_std / cstdlib
blob224fccfd9c508d5a72c3d85d35276f733b28732c
1 // -*- C++ -*- forwarding header.
3 // Copyright (C) 1997-2013 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file include/cstdlib
26  *  This is a Standard C++ Library file.  You should @c #include this file
27  *  in your programs, rather than any of the @a *.h implementation files.
28  *
29  *  This is the C++ version of the Standard C Library header @c stdlib.h,
30  *  and its contents are (mostly) the same as that header, but are all
31  *  contained in the namespace @c std (except for names which are defined
32  *  as macros in C).
33  */
36 // ISO C++ 14882: 20.4.6  C library
39 #ifndef _GLIBCXX_CSTDLIB
40 #define _GLIBCXX_CSTDLIB 1
42 #pragma GCC system_header
44 #include <bits/c++config.h>
46 #if !_GLIBCXX_HOSTED
47 // The C standard does not require a freestanding implementation to
48 // provide <stdlib.h>.  However, the C++ standard does still require
49 // <cstdlib> -- but only the functionality mentioned in
50 // [lib.support.start.term].
52 #define EXIT_SUCCESS 0
53 #define EXIT_FAILURE 1
55 namespace std
57   extern "C" void abort(void) throw () _GLIBCXX_NORETURN;
58   extern "C" int atexit(void (*)()) throw ();
59   extern "C" void exit(int) throw () _GLIBCXX_NORETURN;
60 } // namespace
62 #else
64 #include <stdlib.h>
66 // Get rid of those macros defined in <stdlib.h> in lieu of real functions.
67 #undef abort
68 #undef abs
69 #undef atexit
70 #undef atof
71 #undef atoi
72 #undef atol
73 #undef bsearch
74 #undef calloc
75 #undef div
76 #undef exit
77 #undef free
78 #undef getenv
79 #undef labs
80 #undef ldiv
81 #undef malloc
82 #undef mblen
83 #undef mbstowcs
84 #undef mbtowc
85 #undef qsort
86 #undef rand
87 #undef realloc
88 #undef srand
89 #undef strtod
90 #undef strtol
91 #undef strtoul
92 #undef system
93 #undef wcstombs
94 #undef wctomb
96 namespace std _GLIBCXX_VISIBILITY(default)
98 _GLIBCXX_BEGIN_NAMESPACE_VERSION
100   using ::div_t;
101   using ::ldiv_t;
103   using ::abort;
104   using ::abs;
105   using ::atexit;
106   using ::atof;
107   using ::atoi;
108   using ::atol;
109   using ::bsearch;
110   using ::calloc;
111   using ::div;
112   using ::exit;
113   using ::free;
114   using ::getenv;
115   using ::labs;
116   using ::ldiv;
117   using ::malloc;
118 #ifdef _GLIBCXX_HAVE_MBSTATE_T
119   using ::mblen;
120   using ::mbstowcs;
121   using ::mbtowc;
122 #endif // _GLIBCXX_HAVE_MBSTATE_T
123   using ::qsort;
124   using ::rand;
125   using ::realloc;
126   using ::srand;
127   using ::strtod;
128   using ::strtol;
129   using ::strtoul;
130   using ::system;
131 #ifdef _GLIBCXX_USE_WCHAR_T
132   using ::wcstombs;
133   using ::wctomb;
134 #endif // _GLIBCXX_USE_WCHAR_T
136   inline long
137   abs(long __i) { return __builtin_labs(__i); }
139 #ifdef _GLIBCXX_USE_LONG_LONG
140   inline long long
141   abs(long long __x) { return __builtin_llabs (__x); }
142 #endif
144 #if !defined(__STRICT_ANSI__) && defined(_GLIBCXX_USE_INT128)
145   inline __int128
146   abs(__int128 __x) { return __x >= 0 ? __x : -__x; }
147 #endif
149   inline ldiv_t
150   div(long __i, long __j) { return ldiv(__i, __j); }
152 _GLIBCXX_END_NAMESPACE_VERSION
153 } // namespace
155 #if _GLIBCXX_USE_C99
157 #undef _Exit
158 #undef llabs
159 #undef lldiv
160 #undef atoll
161 #undef strtoll
162 #undef strtoull
163 #undef strtof
164 #undef strtold
166 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
168 _GLIBCXX_BEGIN_NAMESPACE_VERSION
170 #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
171   using ::lldiv_t;
172 #endif
173 #if _GLIBCXX_USE_C99_CHECK || _GLIBCXX_USE_C99_DYNAMIC
174   extern "C" void (_Exit)(int) throw () _GLIBCXX_NORETURN;
175 #endif
176 #if !_GLIBCXX_USE_C99_DYNAMIC
177   using ::_Exit;
178 #endif
180 #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
181   using ::llabs;
183   inline lldiv_t
184   div(long long __n, long long __d)
185   { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; }
187   using ::lldiv;
188 #endif
190 #if _GLIBCXX_USE_C99_LONG_LONG_CHECK || _GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
191   extern "C" long long int (atoll)(const char *) throw ();
192   extern "C" long long int
193     (strtoll)(const char * __restrict, char ** __restrict, int) throw ();
194   extern "C" unsigned long long int
195     (strtoull)(const char * __restrict, char ** __restrict, int) throw ();
196 #endif
197 #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
198   using ::atoll;
199   using ::strtoll;
200   using ::strtoull;
201 #endif
202   using ::strtof;
203   using ::strtold;
205 _GLIBCXX_END_NAMESPACE_VERSION
206 } // namespace __gnu_cxx
208 namespace std
210 #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
211   using ::__gnu_cxx::lldiv_t;
212 #endif
213   using ::__gnu_cxx::_Exit;
214 #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
215   using ::__gnu_cxx::llabs;
216   using ::__gnu_cxx::div;
217   using ::__gnu_cxx::lldiv;
218 #endif
219   using ::__gnu_cxx::atoll;
220   using ::__gnu_cxx::strtof;
221   using ::__gnu_cxx::strtoll;
222   using ::__gnu_cxx::strtoull;
223   using ::__gnu_cxx::strtold;
224 } // namespace std
226 #endif // _GLIBCXX_USE_C99
228 #endif // !_GLIBCXX_HOSTED
230 #endif