3874d2767f7b0ff00c47218b2c3b87f2a6023eda
[gnulib.git] / tests / test-stdlib-c++.cc
1 /* Test of <stdlib.h> substitute in C++ mode.
2    Copyright (C) 2010 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010.  */
18
19 #define GNULIB_NAMESPACE gnulib
20 #include <config.h>
21
22 #include <stdlib.h>
23
24 #include "signature.h"
25
26
27 //SIGNATURE_CHECK (GNULIB_NAMESPACE::atexit, int, (void (*) (void)));
28
29 #if GNULIB_TEST_ATOLL
30 SIGNATURE_CHECK (GNULIB_NAMESPACE::atoll, long long, (const char *));
31 #endif
32
33 #if GNULIB_TEST_CALLOC_POSIX
34 SIGNATURE_CHECK (GNULIB_NAMESPACE::calloc, void *, (size_t, size_t));
35 #endif
36
37 #if GNULIB_TEST_CANONICALIZE_FILE_NAME
38 SIGNATURE_CHECK (GNULIB_NAMESPACE::canonicalize_file_name, char *,
39                  (const char *));
40 #endif
41
42 #if GNULIB_TEST_GETLOADAVG
43 SIGNATURE_CHECK (GNULIB_NAMESPACE::getloadavg, int, (double[], int));
44 #endif
45
46 #if GNULIB_TEST_GETSUBOPT
47 SIGNATURE_CHECK (GNULIB_NAMESPACE::getsubopt, int,
48                  (char **, char *const *, char **));
49 #endif
50
51 #if GNULIB_TEST_GRANTPT
52 SIGNATURE_CHECK (GNULIB_NAMESPACE::grantpt, int, (int));
53 #endif
54
55 #if GNULIB_TEST_MALLOC_POSIX
56 SIGNATURE_CHECK (GNULIB_NAMESPACE::malloc, void *, (size_t));
57 #endif
58
59 #if GNULIB_TEST_MKDTEMP
60 SIGNATURE_CHECK (GNULIB_NAMESPACE::mkdtemp, char *, (char *));
61 #endif
62
63 #if GNULIB_TEST_MKOSTEMP
64 SIGNATURE_CHECK (GNULIB_NAMESPACE::mkostemp, int, (char *, int));
65 #endif
66
67 #if GNULIB_TEST_MKOSTEMPS
68 SIGNATURE_CHECK (GNULIB_NAMESPACE::mkostemps, int, (char *, int, int));
69 #endif
70
71 #if GNULIB_TEST_MKSTEMP
72 SIGNATURE_CHECK (GNULIB_NAMESPACE::mkstemp, int, (char *));
73 #endif
74
75 #if GNULIB_TEST_MKSTEMPS
76 SIGNATURE_CHECK (GNULIB_NAMESPACE::mkstemps, int, (char *, int));
77 #endif
78
79 #if GNULIB_TEST_PTSNAME
80 SIGNATURE_CHECK (GNULIB_NAMESPACE::ptsname, char *, (int));
81 #endif
82
83 #if GNULIB_TEST_PUTENV
84 SIGNATURE_CHECK (GNULIB_NAMESPACE::putenv, int, (char *));
85 #endif
86
87 #if GNULIB_TEST_RANDOM_R
88 SIGNATURE_CHECK (GNULIB_NAMESPACE::random_r, int,
89                  (struct random_data *, int32_t *));
90 #endif
91
92 #if GNULIB_TEST_RANDOM_R
93 SIGNATURE_CHECK (GNULIB_NAMESPACE::srandom_r, int,
94                  (unsigned int, struct random_data *));
95 #endif
96
97 #if GNULIB_TEST_RANDOM_R
98 SIGNATURE_CHECK (GNULIB_NAMESPACE::initstate_r, int,
99                  (unsigned int, char *, size_t, struct random_data *));
100 #endif
101
102 #if GNULIB_TEST_RANDOM_R
103 SIGNATURE_CHECK (GNULIB_NAMESPACE::setstate_r, int,
104                  (char *, struct random_data *));
105 #endif
106
107 #if GNULIB_TEST_REALLOC_POSIX
108 SIGNATURE_CHECK (GNULIB_NAMESPACE::realloc, void *, (void *, size_t));
109 #endif
110
111 #if GNULIB_TEST_REALPATH
112 SIGNATURE_CHECK (GNULIB_NAMESPACE::realpath, char *, (const char *, char *));
113 #endif
114
115 #if GNULIB_TEST_RPMATCH
116 SIGNATURE_CHECK (GNULIB_NAMESPACE::rpmatch, int, (const char *));
117 #endif
118
119 #if GNULIB_TEST_SETENV
120 SIGNATURE_CHECK (GNULIB_NAMESPACE::setenv, int,
121                  (const char *, const char *, int));
122 #endif
123
124 #if GNULIB_TEST_STRTOD
125 SIGNATURE_CHECK (GNULIB_NAMESPACE::strtod, double, (const char *, char **));
126 #endif
127
128 #if GNULIB_TEST_STRTOLL
129 SIGNATURE_CHECK (GNULIB_NAMESPACE::strtoll, long long,
130                  (const char *, char **, int));
131 #endif
132
133 #if GNULIB_TEST_STRTOULL
134 SIGNATURE_CHECK (GNULIB_NAMESPACE::strtoull, unsigned long long,
135                  (const char *, char **, int));
136 #endif
137
138 #if GNULIB_TEST_UNLOCKPT
139 SIGNATURE_CHECK (GNULIB_NAMESPACE::unlockpt, int, (int));
140 #endif
141
142 #if GNULIB_TEST_UNSETENV
143 SIGNATURE_CHECK (GNULIB_NAMESPACE::unsetenv, int, (const char *));
144 #endif
145
146
147 int
148 main ()
149 {
150 }