cstdlib revision 348065586a2e6154d6cff36afa6e00af6bbc5918
1/* -*- c++ -*- */
2/*
3 * Copyright (C) 2009 The Android Open Source Project
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *  * Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 *  * Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in
13 *    the documentation and/or other materials provided with the
14 *    distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
22 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
23 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#ifndef BIONIC_LIBSTDCPP_INCLUDE_CSTDLIB__
31#define BIONIC_LIBSTDCPP_INCLUDE_CSTDLIB__
32
33/*
34 * Standard C++ Library wrapper around the C stdlib.h header file.
35 */
36#include <stdlib.h>
37
38namespace std {
39
40using ::exit;
41using ::abort;
42using ::atexit;
43using ::on_exit;
44
45using ::getenv;
46using ::putenv;
47using ::setenv;
48using ::unsetenv;
49using ::clearenv;
50
51using ::mktemp;
52using ::mkstemp;
53
54using ::strtol;
55using ::strtoll;
56using ::strtoul;
57using ::strtoull;
58using ::strtod;
59using ::strtof;
60
61using ::atoi;
62using ::atol;
63using ::atoll;
64using ::atof;
65
66using ::abs;
67using ::labs;
68using ::llabs;
69
70using ::realpath;
71using ::system;
72
73using ::bsearch;
74using ::qsort;
75
76using ::jrand48;
77using ::mrand48;
78using ::nrand48;
79using ::lrand48;
80using ::seed48;
81using ::srand48;
82
83using ::rand;
84using ::srand;
85using ::random;
86using ::srandom;
87
88using ::malloc;
89using ::free;
90using ::calloc;
91using ::realloc;
92
93using ::unlockpt;
94using ::ptsname;
95using ::ptsname_r;
96using ::getpt;
97using ::grantpt;
98
99using ::div_t;
100using ::div;
101using ::ldiv_t;
102using ::ldiv;
103using ::lldiv_t;
104using ::lldiv;
105
106using ::mblen;
107using ::mbstowcs;
108using ::mbtowc;
109using ::wctomb;
110using ::wcstombs;
111}  // namespace std
112
113#endif  // BIONIC_LIBSTDCPP_INCLUDE_CSTDLIB__
114