]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/llvm/Analysis/TargetLibraryInfo.def
Vendor import of llvm trunk r300422:
[FreeBSD/FreeBSD.git] / include / llvm / Analysis / TargetLibraryInfo.def
1 //===-- TargetLibraryInfo.def - Library information -------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // This .def file will either fill in the enum definition or fill in the
11 // string representation array definition for TargetLibraryInfo.
12 // Which is defined depends on whether TLI_DEFINE_ENUM is defined or
13 // TLI_DEFINE_STRING is defined. Only one should be defined at a time.
14
15 #if !(defined(TLI_DEFINE_ENUM) || defined(TLI_DEFINE_STRING))
16 #error "Must define TLI_DEFINE_ENUM or TLI_DEFINE_STRING for TLI .def."
17 #elif defined(TLI_DEFINE_ENUM) && defined(TLI_DEFINE_STRING)
18 #error "Can only define one of TLI_DEFINE_ENUM or TLI_DEFINE_STRING at a time."
19 #else
20 // One of TLI_DEFINE_ENUM/STRING are defined.
21
22 #if defined(TLI_DEFINE_ENUM)
23 #define TLI_DEFINE_ENUM_INTERNAL(enum_variant) LibFunc_##enum_variant,
24 #define TLI_DEFINE_STRING_INTERNAL(string_repr)
25 #else
26 #define TLI_DEFINE_ENUM_INTERNAL(enum_variant)
27 #define TLI_DEFINE_STRING_INTERNAL(string_repr) string_repr,
28 #endif
29
30 /// void *new(unsigned int);
31 TLI_DEFINE_ENUM_INTERNAL(msvc_new_int)
32 TLI_DEFINE_STRING_INTERNAL("??2@YAPAXI@Z")
33
34 /// void *new(unsigned int, nothrow);
35 TLI_DEFINE_ENUM_INTERNAL(msvc_new_int_nothrow)
36 TLI_DEFINE_STRING_INTERNAL("??2@YAPAXIABUnothrow_t@std@@@Z")
37
38 /// void *new(unsigned long long);
39 TLI_DEFINE_ENUM_INTERNAL(msvc_new_longlong)
40 TLI_DEFINE_STRING_INTERNAL("??2@YAPEAX_K@Z")
41
42 /// void *new(unsigned long long, nothrow);
43 TLI_DEFINE_ENUM_INTERNAL(msvc_new_longlong_nothrow)
44 TLI_DEFINE_STRING_INTERNAL("??2@YAPEAX_KAEBUnothrow_t@std@@@Z")
45
46 /// void operator delete(void*);
47 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_ptr32)
48 TLI_DEFINE_STRING_INTERNAL("??3@YAXPAX@Z")
49
50 /// void operator delete(void*, nothrow);
51 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_ptr32_nothrow)
52 TLI_DEFINE_STRING_INTERNAL("??3@YAXPAXABUnothrow_t@std@@@Z")
53
54 /// void operator delete(void*, unsigned int);
55 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_ptr32_int)
56 TLI_DEFINE_STRING_INTERNAL("??3@YAXPAXI@Z")
57
58 /// void operator delete(void*);
59 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_ptr64)
60 TLI_DEFINE_STRING_INTERNAL("??3@YAXPEAX@Z")
61
62 /// void operator delete(void*, nothrow);
63 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_ptr64_nothrow)
64 TLI_DEFINE_STRING_INTERNAL("??3@YAXPEAXAEBUnothrow_t@std@@@Z")
65
66 /// void operator delete(void*, unsigned long long);
67 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_ptr64_longlong)
68 TLI_DEFINE_STRING_INTERNAL("??3@YAXPEAX_K@Z")
69
70 /// void *new[](unsigned int);
71 TLI_DEFINE_ENUM_INTERNAL(msvc_new_array_int)
72 TLI_DEFINE_STRING_INTERNAL("??_U@YAPAXI@Z")
73
74 /// void *new[](unsigned int, nothrow);
75 TLI_DEFINE_ENUM_INTERNAL(msvc_new_array_int_nothrow)
76 TLI_DEFINE_STRING_INTERNAL("??_U@YAPAXIABUnothrow_t@std@@@Z")
77
78 /// void *new[](unsigned long long);
79 TLI_DEFINE_ENUM_INTERNAL(msvc_new_array_longlong)
80 TLI_DEFINE_STRING_INTERNAL("??_U@YAPEAX_K@Z")
81
82 /// void *new[](unsigned long long, nothrow);
83 TLI_DEFINE_ENUM_INTERNAL(msvc_new_array_longlong_nothrow)
84 TLI_DEFINE_STRING_INTERNAL("??_U@YAPEAX_KAEBUnothrow_t@std@@@Z")
85
86 /// void operator delete[](void*);
87 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_array_ptr32)
88 TLI_DEFINE_STRING_INTERNAL("??_V@YAXPAX@Z")
89
90 /// void operator delete[](void*, nothrow);
91 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_array_ptr32_nothrow)
92 TLI_DEFINE_STRING_INTERNAL("??_V@YAXPAXABUnothrow_t@std@@@Z")
93
94 /// void operator delete[](void*, unsigned int);
95 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_array_ptr32_int)
96 TLI_DEFINE_STRING_INTERNAL("??_V@YAXPAXI@Z")
97
98 /// void operator delete[](void*);
99 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_array_ptr64)
100 TLI_DEFINE_STRING_INTERNAL("??_V@YAXPEAX@Z")
101
102 /// void operator delete[](void*, nothrow);
103 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_array_ptr64_nothrow)
104 TLI_DEFINE_STRING_INTERNAL("??_V@YAXPEAXAEBUnothrow_t@std@@@Z")
105
106 /// void operator delete[](void*, unsigned long long);
107 TLI_DEFINE_ENUM_INTERNAL(msvc_delete_array_ptr64_longlong)
108 TLI_DEFINE_STRING_INTERNAL("??_V@YAXPEAX_K@Z")
109
110 /// int _IO_getc(_IO_FILE * __fp);
111 TLI_DEFINE_ENUM_INTERNAL(under_IO_getc)
112 TLI_DEFINE_STRING_INTERNAL("_IO_getc")
113 /// int _IO_putc(int __c, _IO_FILE * __fp);
114 TLI_DEFINE_ENUM_INTERNAL(under_IO_putc)
115 TLI_DEFINE_STRING_INTERNAL("_IO_putc")
116 /// void operator delete[](void*);
117 TLI_DEFINE_ENUM_INTERNAL(ZdaPv)
118 TLI_DEFINE_STRING_INTERNAL("_ZdaPv")
119 /// void operator delete[](void*, nothrow);
120 TLI_DEFINE_ENUM_INTERNAL(ZdaPvRKSt9nothrow_t)
121 TLI_DEFINE_STRING_INTERNAL("_ZdaPvRKSt9nothrow_t")
122 /// void operator delete[](void*, unsigned int);
123 TLI_DEFINE_ENUM_INTERNAL(ZdaPvj)
124 TLI_DEFINE_STRING_INTERNAL("_ZdaPvj")
125 /// void operator delete[](void*, unsigned long);
126 TLI_DEFINE_ENUM_INTERNAL(ZdaPvm)
127 TLI_DEFINE_STRING_INTERNAL("_ZdaPvm")
128 /// void operator delete(void*);
129 TLI_DEFINE_ENUM_INTERNAL(ZdlPv)
130 TLI_DEFINE_STRING_INTERNAL("_ZdlPv")
131 /// void operator delete(void*, nothrow);
132 TLI_DEFINE_ENUM_INTERNAL(ZdlPvRKSt9nothrow_t)
133 TLI_DEFINE_STRING_INTERNAL("_ZdlPvRKSt9nothrow_t")
134 /// void operator delete(void*, unsigned int);
135 TLI_DEFINE_ENUM_INTERNAL(ZdlPvj)
136 TLI_DEFINE_STRING_INTERNAL("_ZdlPvj")
137 /// void operator delete(void*, unsigned long);
138 TLI_DEFINE_ENUM_INTERNAL(ZdlPvm)
139 TLI_DEFINE_STRING_INTERNAL("_ZdlPvm")
140 /// void *new[](unsigned int);
141 TLI_DEFINE_ENUM_INTERNAL(Znaj)
142 TLI_DEFINE_STRING_INTERNAL("_Znaj")
143 /// void *new[](unsigned int, nothrow);
144 TLI_DEFINE_ENUM_INTERNAL(ZnajRKSt9nothrow_t)
145 TLI_DEFINE_STRING_INTERNAL("_ZnajRKSt9nothrow_t")
146 /// void *new[](unsigned long);
147 TLI_DEFINE_ENUM_INTERNAL(Znam)
148 TLI_DEFINE_STRING_INTERNAL("_Znam")
149 /// void *new[](unsigned long, nothrow);
150 TLI_DEFINE_ENUM_INTERNAL(ZnamRKSt9nothrow_t)
151 TLI_DEFINE_STRING_INTERNAL("_ZnamRKSt9nothrow_t")
152 /// void *new(unsigned int);
153 TLI_DEFINE_ENUM_INTERNAL(Znwj)
154 TLI_DEFINE_STRING_INTERNAL("_Znwj")
155 /// void *new(unsigned int, nothrow);
156 TLI_DEFINE_ENUM_INTERNAL(ZnwjRKSt9nothrow_t)
157 TLI_DEFINE_STRING_INTERNAL("_ZnwjRKSt9nothrow_t")
158 /// void *new(unsigned long);
159 TLI_DEFINE_ENUM_INTERNAL(Znwm)
160 TLI_DEFINE_STRING_INTERNAL("_Znwm")
161 /// void *new(unsigned long, nothrow);
162 TLI_DEFINE_ENUM_INTERNAL(ZnwmRKSt9nothrow_t)
163 TLI_DEFINE_STRING_INTERNAL("_ZnwmRKSt9nothrow_t")
164 /// double __cospi(double x);
165 TLI_DEFINE_ENUM_INTERNAL(cospi)
166 TLI_DEFINE_STRING_INTERNAL("__cospi")
167 /// float __cospif(float x);
168 TLI_DEFINE_ENUM_INTERNAL(cospif)
169 TLI_DEFINE_STRING_INTERNAL("__cospif")
170 /// int __cxa_atexit(void (*f)(void *), void *p, void *d);
171 TLI_DEFINE_ENUM_INTERNAL(cxa_atexit)
172 TLI_DEFINE_STRING_INTERNAL("__cxa_atexit")
173 /// void __cxa_guard_abort(guard_t *guard);
174 /// guard_t is int64_t in Itanium ABI or int32_t on ARM eabi.
175 TLI_DEFINE_ENUM_INTERNAL(cxa_guard_abort)
176 TLI_DEFINE_STRING_INTERNAL("__cxa_guard_abort")
177 /// int __cxa_guard_acquire(guard_t *guard);
178 TLI_DEFINE_ENUM_INTERNAL(cxa_guard_acquire)
179 TLI_DEFINE_STRING_INTERNAL("__cxa_guard_acquire")
180 /// void __cxa_guard_release(guard_t *guard);
181 TLI_DEFINE_ENUM_INTERNAL(cxa_guard_release)
182 TLI_DEFINE_STRING_INTERNAL("__cxa_guard_release")
183 /// int __isoc99_scanf (const char *format, ...)
184 TLI_DEFINE_ENUM_INTERNAL(dunder_isoc99_scanf)
185 TLI_DEFINE_STRING_INTERNAL("__isoc99_scanf")
186 /// int __isoc99_sscanf(const char *s, const char *format, ...)
187 TLI_DEFINE_ENUM_INTERNAL(dunder_isoc99_sscanf)
188 TLI_DEFINE_STRING_INTERNAL("__isoc99_sscanf")
189 /// void *__memcpy_chk(void *s1, const void *s2, size_t n, size_t s1size);
190 TLI_DEFINE_ENUM_INTERNAL(memcpy_chk)
191 TLI_DEFINE_STRING_INTERNAL("__memcpy_chk")
192 /// void *__memmove_chk(void *s1, const void *s2, size_t n, size_t s1size);
193 TLI_DEFINE_ENUM_INTERNAL(memmove_chk)
194 TLI_DEFINE_STRING_INTERNAL("__memmove_chk")
195 /// void *__memset_chk(void *s, char v, size_t n, size_t s1size);
196 TLI_DEFINE_ENUM_INTERNAL(memset_chk)
197 TLI_DEFINE_STRING_INTERNAL("__memset_chk")
198
199 // int __nvvm_reflect(const char *)
200 TLI_DEFINE_ENUM_INTERNAL(nvvm_reflect)
201 TLI_DEFINE_STRING_INTERNAL("__nvvm_reflect")
202
203 /// double __sincospi_stret(double x);
204 TLI_DEFINE_ENUM_INTERNAL(sincospi_stret)
205 TLI_DEFINE_STRING_INTERNAL("__sincospi_stret")
206 /// float __sincospif_stret(float x);
207 TLI_DEFINE_ENUM_INTERNAL(sincospif_stret)
208 TLI_DEFINE_STRING_INTERNAL("__sincospif_stret")
209 /// double __sinpi(double x);
210 TLI_DEFINE_ENUM_INTERNAL(sinpi)
211 TLI_DEFINE_STRING_INTERNAL("__sinpi")
212 /// float __sinpif(float x);
213 TLI_DEFINE_ENUM_INTERNAL(sinpif)
214 TLI_DEFINE_STRING_INTERNAL("__sinpif")
215 /// double __sqrt_finite(double x);
216 TLI_DEFINE_ENUM_INTERNAL(sqrt_finite)
217 TLI_DEFINE_STRING_INTERNAL("__sqrt_finite")
218 /// float __sqrt_finite(float x);
219 TLI_DEFINE_ENUM_INTERNAL(sqrtf_finite)
220 TLI_DEFINE_STRING_INTERNAL("__sqrtf_finite")
221 /// long double __sqrt_finite(long double x);
222 TLI_DEFINE_ENUM_INTERNAL(sqrtl_finite)
223 TLI_DEFINE_STRING_INTERNAL("__sqrtl_finite")
224 /// char *__stpcpy_chk(char *s1, const char *s2, size_t s1size);
225 TLI_DEFINE_ENUM_INTERNAL(stpcpy_chk)
226 TLI_DEFINE_STRING_INTERNAL("__stpcpy_chk")
227 /// char *__stpncpy_chk(char *s1, const char *s2, size_t n, size_t s1size);
228 TLI_DEFINE_ENUM_INTERNAL(stpncpy_chk)
229 TLI_DEFINE_STRING_INTERNAL("__stpncpy_chk")
230 /// char *__strcpy_chk(char *s1, const char *s2, size_t s1size);
231 TLI_DEFINE_ENUM_INTERNAL(strcpy_chk)
232 TLI_DEFINE_STRING_INTERNAL("__strcpy_chk")
233 /// char * __strdup(const char *s);
234 TLI_DEFINE_ENUM_INTERNAL(dunder_strdup)
235 TLI_DEFINE_STRING_INTERNAL("__strdup")
236 /// char *__strncpy_chk(char *s1, const char *s2, size_t n, size_t s1size);
237 TLI_DEFINE_ENUM_INTERNAL(strncpy_chk)
238 TLI_DEFINE_STRING_INTERNAL("__strncpy_chk")
239 /// char *__strndup(const char *s, size_t n);
240 TLI_DEFINE_ENUM_INTERNAL(dunder_strndup)
241 TLI_DEFINE_STRING_INTERNAL("__strndup")
242 /// char * __strtok_r(char *s, const char *delim, char **save_ptr);
243 TLI_DEFINE_ENUM_INTERNAL(dunder_strtok_r)
244 TLI_DEFINE_STRING_INTERNAL("__strtok_r")
245 /// int abs(int j);
246 TLI_DEFINE_ENUM_INTERNAL(abs)
247 TLI_DEFINE_STRING_INTERNAL("abs")
248 /// int access(const char *path, int amode);
249 TLI_DEFINE_ENUM_INTERNAL(access)
250 TLI_DEFINE_STRING_INTERNAL("access")
251 /// double acos(double x);
252 TLI_DEFINE_ENUM_INTERNAL(acos)
253 TLI_DEFINE_STRING_INTERNAL("acos")
254 /// float acosf(float x);
255 TLI_DEFINE_ENUM_INTERNAL(acosf)
256 TLI_DEFINE_STRING_INTERNAL("acosf")
257 /// double acosh(double x);
258 TLI_DEFINE_ENUM_INTERNAL(acosh)
259 TLI_DEFINE_STRING_INTERNAL("acosh")
260 /// float acoshf(float x);
261 TLI_DEFINE_ENUM_INTERNAL(acoshf)
262 TLI_DEFINE_STRING_INTERNAL("acoshf")
263 /// long double acoshl(long double x);
264 TLI_DEFINE_ENUM_INTERNAL(acoshl)
265 TLI_DEFINE_STRING_INTERNAL("acoshl")
266 /// long double acosl(long double x);
267 TLI_DEFINE_ENUM_INTERNAL(acosl)
268 TLI_DEFINE_STRING_INTERNAL("acosl")
269 /// double asin(double x);
270 TLI_DEFINE_ENUM_INTERNAL(asin)
271 TLI_DEFINE_STRING_INTERNAL("asin")
272 /// float asinf(float x);
273 TLI_DEFINE_ENUM_INTERNAL(asinf)
274 TLI_DEFINE_STRING_INTERNAL("asinf")
275 /// double asinh(double x);
276 TLI_DEFINE_ENUM_INTERNAL(asinh)
277 TLI_DEFINE_STRING_INTERNAL("asinh")
278 /// float asinhf(float x);
279 TLI_DEFINE_ENUM_INTERNAL(asinhf)
280 TLI_DEFINE_STRING_INTERNAL("asinhf")
281 /// long double asinhl(long double x);
282 TLI_DEFINE_ENUM_INTERNAL(asinhl)
283 TLI_DEFINE_STRING_INTERNAL("asinhl")
284 /// long double asinl(long double x);
285 TLI_DEFINE_ENUM_INTERNAL(asinl)
286 TLI_DEFINE_STRING_INTERNAL("asinl")
287 /// double atan(double x);
288 TLI_DEFINE_ENUM_INTERNAL(atan)
289 TLI_DEFINE_STRING_INTERNAL("atan")
290 /// double atan2(double y, double x);
291 TLI_DEFINE_ENUM_INTERNAL(atan2)
292 TLI_DEFINE_STRING_INTERNAL("atan2")
293 /// float atan2f(float y, float x);
294 TLI_DEFINE_ENUM_INTERNAL(atan2f)
295 TLI_DEFINE_STRING_INTERNAL("atan2f")
296 /// long double atan2l(long double y, long double x);
297 TLI_DEFINE_ENUM_INTERNAL(atan2l)
298 TLI_DEFINE_STRING_INTERNAL("atan2l")
299 /// float atanf(float x);
300 TLI_DEFINE_ENUM_INTERNAL(atanf)
301 TLI_DEFINE_STRING_INTERNAL("atanf")
302 /// double atanh(double x);
303 TLI_DEFINE_ENUM_INTERNAL(atanh)
304 TLI_DEFINE_STRING_INTERNAL("atanh")
305 /// float atanhf(float x);
306 TLI_DEFINE_ENUM_INTERNAL(atanhf)
307 TLI_DEFINE_STRING_INTERNAL("atanhf")
308 /// long double atanhl(long double x);
309 TLI_DEFINE_ENUM_INTERNAL(atanhl)
310 TLI_DEFINE_STRING_INTERNAL("atanhl")
311 /// long double atanl(long double x);
312 TLI_DEFINE_ENUM_INTERNAL(atanl)
313 TLI_DEFINE_STRING_INTERNAL("atanl")
314 /// double atof(const char *str);
315 TLI_DEFINE_ENUM_INTERNAL(atof)
316 TLI_DEFINE_STRING_INTERNAL("atof")
317 /// int atoi(const char *str);
318 TLI_DEFINE_ENUM_INTERNAL(atoi)
319 TLI_DEFINE_STRING_INTERNAL("atoi")
320 /// long atol(const char *str);
321 TLI_DEFINE_ENUM_INTERNAL(atol)
322 TLI_DEFINE_STRING_INTERNAL("atol")
323 /// long long atoll(const char *nptr);
324 TLI_DEFINE_ENUM_INTERNAL(atoll)
325 TLI_DEFINE_STRING_INTERNAL("atoll")
326 /// int bcmp(const void *s1, const void *s2, size_t n);
327 TLI_DEFINE_ENUM_INTERNAL(bcmp)
328 TLI_DEFINE_STRING_INTERNAL("bcmp")
329 /// void bcopy(const void *s1, void *s2, size_t n);
330 TLI_DEFINE_ENUM_INTERNAL(bcopy)
331 TLI_DEFINE_STRING_INTERNAL("bcopy")
332 /// void bzero(void *s, size_t n);
333 TLI_DEFINE_ENUM_INTERNAL(bzero)
334 TLI_DEFINE_STRING_INTERNAL("bzero")
335 /// void *calloc(size_t count, size_t size);
336 TLI_DEFINE_ENUM_INTERNAL(calloc)
337 TLI_DEFINE_STRING_INTERNAL("calloc")
338 /// double cbrt(double x);
339 TLI_DEFINE_ENUM_INTERNAL(cbrt)
340 TLI_DEFINE_STRING_INTERNAL("cbrt")
341 /// float cbrtf(float x);
342 TLI_DEFINE_ENUM_INTERNAL(cbrtf)
343 TLI_DEFINE_STRING_INTERNAL("cbrtf")
344 /// long double cbrtl(long double x);
345 TLI_DEFINE_ENUM_INTERNAL(cbrtl)
346 TLI_DEFINE_STRING_INTERNAL("cbrtl")
347 /// double ceil(double x);
348 TLI_DEFINE_ENUM_INTERNAL(ceil)
349 TLI_DEFINE_STRING_INTERNAL("ceil")
350 /// float ceilf(float x);
351 TLI_DEFINE_ENUM_INTERNAL(ceilf)
352 TLI_DEFINE_STRING_INTERNAL("ceilf")
353 /// long double ceill(long double x);
354 TLI_DEFINE_ENUM_INTERNAL(ceill)
355 TLI_DEFINE_STRING_INTERNAL("ceill")
356 /// int chmod(const char *path, mode_t mode);
357 TLI_DEFINE_ENUM_INTERNAL(chmod)
358 TLI_DEFINE_STRING_INTERNAL("chmod")
359 /// int chown(const char *path, uid_t owner, gid_t group);
360 TLI_DEFINE_ENUM_INTERNAL(chown)
361 TLI_DEFINE_STRING_INTERNAL("chown")
362 /// void clearerr(FILE *stream);
363 TLI_DEFINE_ENUM_INTERNAL(clearerr)
364 TLI_DEFINE_STRING_INTERNAL("clearerr")
365 /// int closedir(DIR *dirp);
366 TLI_DEFINE_ENUM_INTERNAL(closedir)
367 TLI_DEFINE_STRING_INTERNAL("closedir")
368 /// double copysign(double x, double y);
369 TLI_DEFINE_ENUM_INTERNAL(copysign)
370 TLI_DEFINE_STRING_INTERNAL("copysign")
371 /// float copysignf(float x, float y);
372 TLI_DEFINE_ENUM_INTERNAL(copysignf)
373 TLI_DEFINE_STRING_INTERNAL("copysignf")
374 /// long double copysignl(long double x, long double y);
375 TLI_DEFINE_ENUM_INTERNAL(copysignl)
376 TLI_DEFINE_STRING_INTERNAL("copysignl")
377 /// double cos(double x);
378 TLI_DEFINE_ENUM_INTERNAL(cos)
379 TLI_DEFINE_STRING_INTERNAL("cos")
380 /// float cosf(float x);
381 TLI_DEFINE_ENUM_INTERNAL(cosf)
382 TLI_DEFINE_STRING_INTERNAL("cosf")
383 /// double cosh(double x);
384 TLI_DEFINE_ENUM_INTERNAL(cosh)
385 TLI_DEFINE_STRING_INTERNAL("cosh")
386 /// float coshf(float x);
387 TLI_DEFINE_ENUM_INTERNAL(coshf)
388 TLI_DEFINE_STRING_INTERNAL("coshf")
389 /// long double coshl(long double x);
390 TLI_DEFINE_ENUM_INTERNAL(coshl)
391 TLI_DEFINE_STRING_INTERNAL("coshl")
392 /// long double cosl(long double x);
393 TLI_DEFINE_ENUM_INTERNAL(cosl)
394 TLI_DEFINE_STRING_INTERNAL("cosl")
395 /// char *ctermid(char *s);
396 TLI_DEFINE_ENUM_INTERNAL(ctermid)
397 TLI_DEFINE_STRING_INTERNAL("ctermid")
398 /// double exp(double x);
399 TLI_DEFINE_ENUM_INTERNAL(exp)
400 TLI_DEFINE_STRING_INTERNAL("exp")
401 /// double exp10(double x);
402 TLI_DEFINE_ENUM_INTERNAL(exp10)
403 TLI_DEFINE_STRING_INTERNAL("exp10")
404 /// float exp10f(float x);
405 TLI_DEFINE_ENUM_INTERNAL(exp10f)
406 TLI_DEFINE_STRING_INTERNAL("exp10f")
407 /// long double exp10l(long double x);
408 TLI_DEFINE_ENUM_INTERNAL(exp10l)
409 TLI_DEFINE_STRING_INTERNAL("exp10l")
410 /// double exp2(double x);
411 TLI_DEFINE_ENUM_INTERNAL(exp2)
412 TLI_DEFINE_STRING_INTERNAL("exp2")
413 /// float exp2f(float x);
414 TLI_DEFINE_ENUM_INTERNAL(exp2f)
415 TLI_DEFINE_STRING_INTERNAL("exp2f")
416 /// long double exp2l(long double x);
417 TLI_DEFINE_ENUM_INTERNAL(exp2l)
418 TLI_DEFINE_STRING_INTERNAL("exp2l")
419 /// float expf(float x);
420 TLI_DEFINE_ENUM_INTERNAL(expf)
421 TLI_DEFINE_STRING_INTERNAL("expf")
422 /// long double expl(long double x);
423 TLI_DEFINE_ENUM_INTERNAL(expl)
424 TLI_DEFINE_STRING_INTERNAL("expl")
425 /// double expm1(double x);
426 TLI_DEFINE_ENUM_INTERNAL(expm1)
427 TLI_DEFINE_STRING_INTERNAL("expm1")
428 /// float expm1f(float x);
429 TLI_DEFINE_ENUM_INTERNAL(expm1f)
430 TLI_DEFINE_STRING_INTERNAL("expm1f")
431 /// long double expm1l(long double x);
432 TLI_DEFINE_ENUM_INTERNAL(expm1l)
433 TLI_DEFINE_STRING_INTERNAL("expm1l")
434 /// double fabs(double x);
435 TLI_DEFINE_ENUM_INTERNAL(fabs)
436 TLI_DEFINE_STRING_INTERNAL("fabs")
437 /// float fabsf(float x);
438 TLI_DEFINE_ENUM_INTERNAL(fabsf)
439 TLI_DEFINE_STRING_INTERNAL("fabsf")
440 /// long double fabsl(long double x);
441 TLI_DEFINE_ENUM_INTERNAL(fabsl)
442 TLI_DEFINE_STRING_INTERNAL("fabsl")
443 /// int fclose(FILE *stream);
444 TLI_DEFINE_ENUM_INTERNAL(fclose)
445 TLI_DEFINE_STRING_INTERNAL("fclose")
446 /// FILE *fdopen(int fildes, const char *mode);
447 TLI_DEFINE_ENUM_INTERNAL(fdopen)
448 TLI_DEFINE_STRING_INTERNAL("fdopen")
449 /// int feof(FILE *stream);
450 TLI_DEFINE_ENUM_INTERNAL(feof)
451 TLI_DEFINE_STRING_INTERNAL("feof")
452 /// int ferror(FILE *stream);
453 TLI_DEFINE_ENUM_INTERNAL(ferror)
454 TLI_DEFINE_STRING_INTERNAL("ferror")
455 /// int fflush(FILE *stream);
456 TLI_DEFINE_ENUM_INTERNAL(fflush)
457 TLI_DEFINE_STRING_INTERNAL("fflush")
458 /// int ffs(int i);
459 TLI_DEFINE_ENUM_INTERNAL(ffs)
460 TLI_DEFINE_STRING_INTERNAL("ffs")
461 /// int ffsl(long int i);
462 TLI_DEFINE_ENUM_INTERNAL(ffsl)
463 TLI_DEFINE_STRING_INTERNAL("ffsl")
464 /// int ffsll(long long int i);
465 TLI_DEFINE_ENUM_INTERNAL(ffsll)
466 TLI_DEFINE_STRING_INTERNAL("ffsll")
467 /// int fgetc(FILE *stream);
468 TLI_DEFINE_ENUM_INTERNAL(fgetc)
469 TLI_DEFINE_STRING_INTERNAL("fgetc")
470 /// int fgetpos(FILE *stream, fpos_t *pos);
471 TLI_DEFINE_ENUM_INTERNAL(fgetpos)
472 TLI_DEFINE_STRING_INTERNAL("fgetpos")
473 /// char *fgets(char *s, int n, FILE *stream);
474 TLI_DEFINE_ENUM_INTERNAL(fgets)
475 TLI_DEFINE_STRING_INTERNAL("fgets")
476 /// int fileno(FILE *stream);
477 TLI_DEFINE_ENUM_INTERNAL(fileno)
478 TLI_DEFINE_STRING_INTERNAL("fileno")
479 /// int fiprintf(FILE *stream, const char *format, ...);
480 TLI_DEFINE_ENUM_INTERNAL(fiprintf)
481 TLI_DEFINE_STRING_INTERNAL("fiprintf")
482 /// void flockfile(FILE *file);
483 TLI_DEFINE_ENUM_INTERNAL(flockfile)
484 TLI_DEFINE_STRING_INTERNAL("flockfile")
485 /// double floor(double x);
486 TLI_DEFINE_ENUM_INTERNAL(floor)
487 TLI_DEFINE_STRING_INTERNAL("floor")
488 /// float floorf(float x);
489 TLI_DEFINE_ENUM_INTERNAL(floorf)
490 TLI_DEFINE_STRING_INTERNAL("floorf")
491 /// long double floorl(long double x);
492 TLI_DEFINE_ENUM_INTERNAL(floorl)
493 TLI_DEFINE_STRING_INTERNAL("floorl")
494 /// int fls(int i);
495 TLI_DEFINE_ENUM_INTERNAL(fls)
496 TLI_DEFINE_STRING_INTERNAL("fls")
497 /// int flsl(long int i);
498 TLI_DEFINE_ENUM_INTERNAL(flsl)
499 TLI_DEFINE_STRING_INTERNAL("flsl")
500 /// int flsll(long long int i);
501 TLI_DEFINE_ENUM_INTERNAL(flsll)
502 TLI_DEFINE_STRING_INTERNAL("flsll")
503 /// double fmax(double x, double y);
504 TLI_DEFINE_ENUM_INTERNAL(fmax)
505 TLI_DEFINE_STRING_INTERNAL("fmax")
506 /// float fmaxf(float x, float y);
507 TLI_DEFINE_ENUM_INTERNAL(fmaxf)
508 TLI_DEFINE_STRING_INTERNAL("fmaxf")
509 /// long double fmaxl(long double x, long double y);
510 TLI_DEFINE_ENUM_INTERNAL(fmaxl)
511 TLI_DEFINE_STRING_INTERNAL("fmaxl")
512 /// double fmin(double x, double y);
513 TLI_DEFINE_ENUM_INTERNAL(fmin)
514 TLI_DEFINE_STRING_INTERNAL("fmin")
515 /// float fminf(float x, float y);
516 TLI_DEFINE_ENUM_INTERNAL(fminf)
517 TLI_DEFINE_STRING_INTERNAL("fminf")
518 /// long double fminl(long double x, long double y);
519 TLI_DEFINE_ENUM_INTERNAL(fminl)
520 TLI_DEFINE_STRING_INTERNAL("fminl")
521 /// double fmod(double x, double y);
522 TLI_DEFINE_ENUM_INTERNAL(fmod)
523 TLI_DEFINE_STRING_INTERNAL("fmod")
524 /// float fmodf(float x, float y);
525 TLI_DEFINE_ENUM_INTERNAL(fmodf)
526 TLI_DEFINE_STRING_INTERNAL("fmodf")
527 /// long double fmodl(long double x, long double y);
528 TLI_DEFINE_ENUM_INTERNAL(fmodl)
529 TLI_DEFINE_STRING_INTERNAL("fmodl")
530 /// FILE *fopen(const char *filename, const char *mode);
531 TLI_DEFINE_ENUM_INTERNAL(fopen)
532 TLI_DEFINE_STRING_INTERNAL("fopen")
533 /// FILE *fopen64(const char *filename, const char *opentype)
534 TLI_DEFINE_ENUM_INTERNAL(fopen64)
535 TLI_DEFINE_STRING_INTERNAL("fopen64")
536 /// int fprintf(FILE *stream, const char *format, ...);
537 TLI_DEFINE_ENUM_INTERNAL(fprintf)
538 TLI_DEFINE_STRING_INTERNAL("fprintf")
539 /// int fputc(int c, FILE *stream);
540 TLI_DEFINE_ENUM_INTERNAL(fputc)
541 TLI_DEFINE_STRING_INTERNAL("fputc")
542 /// int fputs(const char *s, FILE *stream);
543 TLI_DEFINE_ENUM_INTERNAL(fputs)
544 TLI_DEFINE_STRING_INTERNAL("fputs")
545 /// size_t fread(void *ptr, size_t size, size_t nitems, FILE *stream);
546 TLI_DEFINE_ENUM_INTERNAL(fread)
547 TLI_DEFINE_STRING_INTERNAL("fread")
548 /// void free(void *ptr);
549 TLI_DEFINE_ENUM_INTERNAL(free)
550 TLI_DEFINE_STRING_INTERNAL("free")
551 /// double frexp(double num, int *exp);
552 TLI_DEFINE_ENUM_INTERNAL(frexp)
553 TLI_DEFINE_STRING_INTERNAL("frexp")
554 /// float frexpf(float num, int *exp);
555 TLI_DEFINE_ENUM_INTERNAL(frexpf)
556 TLI_DEFINE_STRING_INTERNAL("frexpf")
557 /// long double frexpl(long double num, int *exp);
558 TLI_DEFINE_ENUM_INTERNAL(frexpl)
559 TLI_DEFINE_STRING_INTERNAL("frexpl")
560 /// int fscanf(FILE *stream, const char *format, ... );
561 TLI_DEFINE_ENUM_INTERNAL(fscanf)
562 TLI_DEFINE_STRING_INTERNAL("fscanf")
563 /// int fseek(FILE *stream, long offset, int whence);
564 TLI_DEFINE_ENUM_INTERNAL(fseek)
565 TLI_DEFINE_STRING_INTERNAL("fseek")
566 /// int fseeko(FILE *stream, off_t offset, int whence);
567 TLI_DEFINE_ENUM_INTERNAL(fseeko)
568 TLI_DEFINE_STRING_INTERNAL("fseeko")
569 /// int fseeko64(FILE *stream, off64_t offset, int whence)
570 TLI_DEFINE_ENUM_INTERNAL(fseeko64)
571 TLI_DEFINE_STRING_INTERNAL("fseeko64")
572 /// int fsetpos(FILE *stream, const fpos_t *pos);
573 TLI_DEFINE_ENUM_INTERNAL(fsetpos)
574 TLI_DEFINE_STRING_INTERNAL("fsetpos")
575 /// int fstat(int fildes, struct stat *buf);
576 TLI_DEFINE_ENUM_INTERNAL(fstat)
577 TLI_DEFINE_STRING_INTERNAL("fstat")
578 /// int fstat64(int filedes, struct stat64 *buf)
579 TLI_DEFINE_ENUM_INTERNAL(fstat64)
580 TLI_DEFINE_STRING_INTERNAL("fstat64")
581 /// int fstatvfs(int fildes, struct statvfs *buf);
582 TLI_DEFINE_ENUM_INTERNAL(fstatvfs)
583 TLI_DEFINE_STRING_INTERNAL("fstatvfs")
584 /// int fstatvfs64(int fildes, struct statvfs64 *buf);
585 TLI_DEFINE_ENUM_INTERNAL(fstatvfs64)
586 TLI_DEFINE_STRING_INTERNAL("fstatvfs64")
587 /// long ftell(FILE *stream);
588 TLI_DEFINE_ENUM_INTERNAL(ftell)
589 TLI_DEFINE_STRING_INTERNAL("ftell")
590 /// off_t ftello(FILE *stream);
591 TLI_DEFINE_ENUM_INTERNAL(ftello)
592 TLI_DEFINE_STRING_INTERNAL("ftello")
593 /// off64_t ftello64(FILE *stream)
594 TLI_DEFINE_ENUM_INTERNAL(ftello64)
595 TLI_DEFINE_STRING_INTERNAL("ftello64")
596 /// int ftrylockfile(FILE *file);
597 TLI_DEFINE_ENUM_INTERNAL(ftrylockfile)
598 TLI_DEFINE_STRING_INTERNAL("ftrylockfile")
599 /// void funlockfile(FILE *file);
600 TLI_DEFINE_ENUM_INTERNAL(funlockfile)
601 TLI_DEFINE_STRING_INTERNAL("funlockfile")
602 /// size_t fwrite(const void *ptr, size_t size, size_t nitems, FILE *stream);
603 TLI_DEFINE_ENUM_INTERNAL(fwrite)
604 TLI_DEFINE_STRING_INTERNAL("fwrite")
605 /// int getc(FILE *stream);
606 TLI_DEFINE_ENUM_INTERNAL(getc)
607 TLI_DEFINE_STRING_INTERNAL("getc")
608 /// int getc_unlocked(FILE *stream);
609 TLI_DEFINE_ENUM_INTERNAL(getc_unlocked)
610 TLI_DEFINE_STRING_INTERNAL("getc_unlocked")
611 /// int getchar(void);
612 TLI_DEFINE_ENUM_INTERNAL(getchar)
613 TLI_DEFINE_STRING_INTERNAL("getchar")
614 /// char *getenv(const char *name);
615 TLI_DEFINE_ENUM_INTERNAL(getenv)
616 TLI_DEFINE_STRING_INTERNAL("getenv")
617 /// int getitimer(int which, struct itimerval *value);
618 TLI_DEFINE_ENUM_INTERNAL(getitimer)
619 TLI_DEFINE_STRING_INTERNAL("getitimer")
620 /// int getlogin_r(char *name, size_t namesize);
621 TLI_DEFINE_ENUM_INTERNAL(getlogin_r)
622 TLI_DEFINE_STRING_INTERNAL("getlogin_r")
623 /// struct passwd *getpwnam(const char *name);
624 TLI_DEFINE_ENUM_INTERNAL(getpwnam)
625 TLI_DEFINE_STRING_INTERNAL("getpwnam")
626 /// char *gets(char *s);
627 TLI_DEFINE_ENUM_INTERNAL(gets)
628 TLI_DEFINE_STRING_INTERNAL("gets")
629 /// int gettimeofday(struct timeval *tp, void *tzp);
630 TLI_DEFINE_ENUM_INTERNAL(gettimeofday)
631 TLI_DEFINE_STRING_INTERNAL("gettimeofday")
632 /// uint32_t htonl(uint32_t hostlong);
633 TLI_DEFINE_ENUM_INTERNAL(htonl)
634 TLI_DEFINE_STRING_INTERNAL("htonl")
635 /// uint16_t htons(uint16_t hostshort);
636 TLI_DEFINE_ENUM_INTERNAL(htons)
637 TLI_DEFINE_STRING_INTERNAL("htons")
638 /// int iprintf(const char *format, ...);
639 TLI_DEFINE_ENUM_INTERNAL(iprintf)
640 TLI_DEFINE_STRING_INTERNAL("iprintf")
641 /// int isascii(int c);
642 TLI_DEFINE_ENUM_INTERNAL(isascii)
643 TLI_DEFINE_STRING_INTERNAL("isascii")
644 /// int isdigit(int c);
645 TLI_DEFINE_ENUM_INTERNAL(isdigit)
646 TLI_DEFINE_STRING_INTERNAL("isdigit")
647 /// long int labs(long int j);
648 TLI_DEFINE_ENUM_INTERNAL(labs)
649 TLI_DEFINE_STRING_INTERNAL("labs")
650 /// int lchown(const char *path, uid_t owner, gid_t group);
651 TLI_DEFINE_ENUM_INTERNAL(lchown)
652 TLI_DEFINE_STRING_INTERNAL("lchown")
653 /// double ldexp(double x, int n);
654 TLI_DEFINE_ENUM_INTERNAL(ldexp)
655 TLI_DEFINE_STRING_INTERNAL("ldexp")
656 /// float ldexpf(float x, int n);
657 TLI_DEFINE_ENUM_INTERNAL(ldexpf)
658 TLI_DEFINE_STRING_INTERNAL("ldexpf")
659 /// long double ldexpl(long double x, int n);
660 TLI_DEFINE_ENUM_INTERNAL(ldexpl)
661 TLI_DEFINE_STRING_INTERNAL("ldexpl")
662 /// long long int llabs(long long int j);
663 TLI_DEFINE_ENUM_INTERNAL(llabs)
664 TLI_DEFINE_STRING_INTERNAL("llabs")
665 /// double log(double x);
666 TLI_DEFINE_ENUM_INTERNAL(log)
667 TLI_DEFINE_STRING_INTERNAL("log")
668 /// double log10(double x);
669 TLI_DEFINE_ENUM_INTERNAL(log10)
670 TLI_DEFINE_STRING_INTERNAL("log10")
671 /// float log10f(float x);
672 TLI_DEFINE_ENUM_INTERNAL(log10f)
673 TLI_DEFINE_STRING_INTERNAL("log10f")
674 /// long double log10l(long double x);
675 TLI_DEFINE_ENUM_INTERNAL(log10l)
676 TLI_DEFINE_STRING_INTERNAL("log10l")
677 /// double log1p(double x);
678 TLI_DEFINE_ENUM_INTERNAL(log1p)
679 TLI_DEFINE_STRING_INTERNAL("log1p")
680 /// float log1pf(float x);
681 TLI_DEFINE_ENUM_INTERNAL(log1pf)
682 TLI_DEFINE_STRING_INTERNAL("log1pf")
683 /// long double log1pl(long double x);
684 TLI_DEFINE_ENUM_INTERNAL(log1pl)
685 TLI_DEFINE_STRING_INTERNAL("log1pl")
686 /// double log2(double x);
687 TLI_DEFINE_ENUM_INTERNAL(log2)
688 TLI_DEFINE_STRING_INTERNAL("log2")
689 /// float log2f(float x);
690 TLI_DEFINE_ENUM_INTERNAL(log2f)
691 TLI_DEFINE_STRING_INTERNAL("log2f")
692 /// double long double log2l(long double x);
693 TLI_DEFINE_ENUM_INTERNAL(log2l)
694 TLI_DEFINE_STRING_INTERNAL("log2l")
695 /// double logb(double x);
696 TLI_DEFINE_ENUM_INTERNAL(logb)
697 TLI_DEFINE_STRING_INTERNAL("logb")
698 /// float logbf(float x);
699 TLI_DEFINE_ENUM_INTERNAL(logbf)
700 TLI_DEFINE_STRING_INTERNAL("logbf")
701 /// long double logbl(long double x);
702 TLI_DEFINE_ENUM_INTERNAL(logbl)
703 TLI_DEFINE_STRING_INTERNAL("logbl")
704 /// float logf(float x);
705 TLI_DEFINE_ENUM_INTERNAL(logf)
706 TLI_DEFINE_STRING_INTERNAL("logf")
707 /// long double logl(long double x);
708 TLI_DEFINE_ENUM_INTERNAL(logl)
709 TLI_DEFINE_STRING_INTERNAL("logl")
710 /// int lstat(const char *path, struct stat *buf);
711 TLI_DEFINE_ENUM_INTERNAL(lstat)
712 TLI_DEFINE_STRING_INTERNAL("lstat")
713 /// int lstat64(const char *path, struct stat64 *buf);
714 TLI_DEFINE_ENUM_INTERNAL(lstat64)
715 TLI_DEFINE_STRING_INTERNAL("lstat64")
716 /// void *malloc(size_t size);
717 TLI_DEFINE_ENUM_INTERNAL(malloc)
718 TLI_DEFINE_STRING_INTERNAL("malloc")
719 /// void *memalign(size_t boundary, size_t size);
720 TLI_DEFINE_ENUM_INTERNAL(memalign)
721 TLI_DEFINE_STRING_INTERNAL("memalign")
722 /// void *memccpy(void *s1, const void *s2, int c, size_t n);
723 TLI_DEFINE_ENUM_INTERNAL(memccpy)
724 TLI_DEFINE_STRING_INTERNAL("memccpy")
725 /// void *memchr(const void *s, int c, size_t n);
726 TLI_DEFINE_ENUM_INTERNAL(memchr)
727 TLI_DEFINE_STRING_INTERNAL("memchr")
728 /// int memcmp(const void *s1, const void *s2, size_t n);
729 TLI_DEFINE_ENUM_INTERNAL(memcmp)
730 TLI_DEFINE_STRING_INTERNAL("memcmp")
731 /// void *memcpy(void *s1, const void *s2, size_t n);
732 TLI_DEFINE_ENUM_INTERNAL(memcpy)
733 TLI_DEFINE_STRING_INTERNAL("memcpy")
734 /// void *memmove(void *s1, const void *s2, size_t n);
735 TLI_DEFINE_ENUM_INTERNAL(memmove)
736 TLI_DEFINE_STRING_INTERNAL("memmove")
737 /// void *mempcpy(void *s1, const void *s2, size_t n);
738 TLI_DEFINE_ENUM_INTERNAL(mempcpy)
739 TLI_DEFINE_STRING_INTERNAL("mempcpy")
740 // void *memrchr(const void *s, int c, size_t n);
741 TLI_DEFINE_ENUM_INTERNAL(memrchr)
742 TLI_DEFINE_STRING_INTERNAL("memrchr")
743 /// void *memset(void *b, int c, size_t len);
744 TLI_DEFINE_ENUM_INTERNAL(memset)
745 TLI_DEFINE_STRING_INTERNAL("memset")
746 /// void memset_pattern16(void *b, const void *pattern16, size_t len);
747 TLI_DEFINE_ENUM_INTERNAL(memset_pattern16)
748 TLI_DEFINE_STRING_INTERNAL("memset_pattern16")
749 /// int mkdir(const char *path, mode_t mode);
750 TLI_DEFINE_ENUM_INTERNAL(mkdir)
751 TLI_DEFINE_STRING_INTERNAL("mkdir")
752 /// time_t mktime(struct tm *timeptr);
753 TLI_DEFINE_ENUM_INTERNAL(mktime)
754 TLI_DEFINE_STRING_INTERNAL("mktime")
755 /// double modf(double x, double *iptr);
756 TLI_DEFINE_ENUM_INTERNAL(modf)
757 TLI_DEFINE_STRING_INTERNAL("modf")
758 /// float modff(float, float *iptr);
759 TLI_DEFINE_ENUM_INTERNAL(modff)
760 TLI_DEFINE_STRING_INTERNAL("modff")
761 /// long double modfl(long double value, long double *iptr);
762 TLI_DEFINE_ENUM_INTERNAL(modfl)
763 TLI_DEFINE_STRING_INTERNAL("modfl")
764
765 /// double nearbyint(double x);
766 TLI_DEFINE_ENUM_INTERNAL(nearbyint)
767 TLI_DEFINE_STRING_INTERNAL("nearbyint")
768 /// float nearbyintf(float x);
769 TLI_DEFINE_ENUM_INTERNAL(nearbyintf)
770 TLI_DEFINE_STRING_INTERNAL("nearbyintf")
771 /// long double nearbyintl(long double x);
772 TLI_DEFINE_ENUM_INTERNAL(nearbyintl)
773 TLI_DEFINE_STRING_INTERNAL("nearbyintl")
774 /// uint32_t ntohl(uint32_t netlong);
775 TLI_DEFINE_ENUM_INTERNAL(ntohl)
776 TLI_DEFINE_STRING_INTERNAL("ntohl")
777 /// uint16_t ntohs(uint16_t netshort);
778 TLI_DEFINE_ENUM_INTERNAL(ntohs)
779 TLI_DEFINE_STRING_INTERNAL("ntohs")
780 /// int open(const char *path, int oflag, ... );
781 TLI_DEFINE_ENUM_INTERNAL(open)
782 TLI_DEFINE_STRING_INTERNAL("open")
783 /// int open64(const char *filename, int flags[, mode_t mode])
784 TLI_DEFINE_ENUM_INTERNAL(open64)
785 TLI_DEFINE_STRING_INTERNAL("open64")
786 /// DIR *opendir(const char *dirname);
787 TLI_DEFINE_ENUM_INTERNAL(opendir)
788 TLI_DEFINE_STRING_INTERNAL("opendir")
789 /// int pclose(FILE *stream);
790 TLI_DEFINE_ENUM_INTERNAL(pclose)
791 TLI_DEFINE_STRING_INTERNAL("pclose")
792 /// void perror(const char *s);
793 TLI_DEFINE_ENUM_INTERNAL(perror)
794 TLI_DEFINE_STRING_INTERNAL("perror")
795 /// FILE *popen(const char *command, const char *mode);
796 TLI_DEFINE_ENUM_INTERNAL(popen)
797 TLI_DEFINE_STRING_INTERNAL("popen")
798 /// int posix_memalign(void **memptr, size_t alignment, size_t size);
799 TLI_DEFINE_ENUM_INTERNAL(posix_memalign)
800 TLI_DEFINE_STRING_INTERNAL("posix_memalign")
801 /// double pow(double x, double y);
802 TLI_DEFINE_ENUM_INTERNAL(pow)
803 TLI_DEFINE_STRING_INTERNAL("pow")
804 /// float powf(float x, float y);
805 TLI_DEFINE_ENUM_INTERNAL(powf)
806 TLI_DEFINE_STRING_INTERNAL("powf")
807 /// long double powl(long double x, long double y);
808 TLI_DEFINE_ENUM_INTERNAL(powl)
809 TLI_DEFINE_STRING_INTERNAL("powl")
810 /// ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
811 TLI_DEFINE_ENUM_INTERNAL(pread)
812 TLI_DEFINE_STRING_INTERNAL("pread")
813 /// int printf(const char *format, ...);
814 TLI_DEFINE_ENUM_INTERNAL(printf)
815 TLI_DEFINE_STRING_INTERNAL("printf")
816 /// int putc(int c, FILE *stream);
817 TLI_DEFINE_ENUM_INTERNAL(putc)
818 TLI_DEFINE_STRING_INTERNAL("putc")
819 /// int putchar(int c);
820 TLI_DEFINE_ENUM_INTERNAL(putchar)
821 TLI_DEFINE_STRING_INTERNAL("putchar")
822 /// int puts(const char *s);
823 TLI_DEFINE_ENUM_INTERNAL(puts)
824 TLI_DEFINE_STRING_INTERNAL("puts")
825 /// ssize_t pwrite(int fildes, const void *buf, size_t nbyte, off_t offset);
826 TLI_DEFINE_ENUM_INTERNAL(pwrite)
827 TLI_DEFINE_STRING_INTERNAL("pwrite")
828 /// void qsort(void *base, size_t nel, size_t width,
829 ///            int (*compar)(const void *, const void *));
830 TLI_DEFINE_ENUM_INTERNAL(qsort)
831 TLI_DEFINE_STRING_INTERNAL("qsort")
832 /// ssize_t read(int fildes, void *buf, size_t nbyte);
833 TLI_DEFINE_ENUM_INTERNAL(read)
834 TLI_DEFINE_STRING_INTERNAL("read")
835 /// ssize_t readlink(const char *path, char *buf, size_t bufsize);
836 TLI_DEFINE_ENUM_INTERNAL(readlink)
837 TLI_DEFINE_STRING_INTERNAL("readlink")
838 /// void *realloc(void *ptr, size_t size);
839 TLI_DEFINE_ENUM_INTERNAL(realloc)
840 TLI_DEFINE_STRING_INTERNAL("realloc")
841 /// void *reallocf(void *ptr, size_t size);
842 TLI_DEFINE_ENUM_INTERNAL(reallocf)
843 TLI_DEFINE_STRING_INTERNAL("reallocf")
844 /// char *realpath(const char *file_name, char *resolved_name);
845 TLI_DEFINE_ENUM_INTERNAL(realpath)
846 TLI_DEFINE_STRING_INTERNAL("realpath")
847 /// int remove(const char *path);
848 TLI_DEFINE_ENUM_INTERNAL(remove)
849 TLI_DEFINE_STRING_INTERNAL("remove")
850 /// int rename(const char *old, const char *new);
851 TLI_DEFINE_ENUM_INTERNAL(rename)
852 TLI_DEFINE_STRING_INTERNAL("rename")
853 /// void rewind(FILE *stream);
854 TLI_DEFINE_ENUM_INTERNAL(rewind)
855 TLI_DEFINE_STRING_INTERNAL("rewind")
856 /// double rint(double x);
857 TLI_DEFINE_ENUM_INTERNAL(rint)
858 TLI_DEFINE_STRING_INTERNAL("rint")
859 /// float rintf(float x);
860 TLI_DEFINE_ENUM_INTERNAL(rintf)
861 TLI_DEFINE_STRING_INTERNAL("rintf")
862 /// long double rintl(long double x);
863 TLI_DEFINE_ENUM_INTERNAL(rintl)
864 TLI_DEFINE_STRING_INTERNAL("rintl")
865 /// int rmdir(const char *path);
866 TLI_DEFINE_ENUM_INTERNAL(rmdir)
867 TLI_DEFINE_STRING_INTERNAL("rmdir")
868 /// double round(double x);
869 TLI_DEFINE_ENUM_INTERNAL(round)
870 TLI_DEFINE_STRING_INTERNAL("round")
871 /// float roundf(float x);
872 TLI_DEFINE_ENUM_INTERNAL(roundf)
873 TLI_DEFINE_STRING_INTERNAL("roundf")
874 /// long double roundl(long double x);
875 TLI_DEFINE_ENUM_INTERNAL(roundl)
876 TLI_DEFINE_STRING_INTERNAL("roundl")
877 /// int scanf(const char *restrict format, ... );
878 TLI_DEFINE_ENUM_INTERNAL(scanf)
879 TLI_DEFINE_STRING_INTERNAL("scanf")
880 /// void setbuf(FILE *stream, char *buf);
881 TLI_DEFINE_ENUM_INTERNAL(setbuf)
882 TLI_DEFINE_STRING_INTERNAL("setbuf")
883 /// int setitimer(int which, const struct itimerval *value,
884 ///               struct itimerval *ovalue);
885 TLI_DEFINE_ENUM_INTERNAL(setitimer)
886 TLI_DEFINE_STRING_INTERNAL("setitimer")
887 /// int setvbuf(FILE *stream, char *buf, int type, size_t size);
888 TLI_DEFINE_ENUM_INTERNAL(setvbuf)
889 TLI_DEFINE_STRING_INTERNAL("setvbuf")
890 /// double sin(double x);
891 TLI_DEFINE_ENUM_INTERNAL(sin)
892 TLI_DEFINE_STRING_INTERNAL("sin")
893 /// float sinf(float x);
894 TLI_DEFINE_ENUM_INTERNAL(sinf)
895 TLI_DEFINE_STRING_INTERNAL("sinf")
896 /// double sinh(double x);
897 TLI_DEFINE_ENUM_INTERNAL(sinh)
898 TLI_DEFINE_STRING_INTERNAL("sinh")
899 /// float sinhf(float x);
900 TLI_DEFINE_ENUM_INTERNAL(sinhf)
901 TLI_DEFINE_STRING_INTERNAL("sinhf")
902 /// long double sinhl(long double x);
903 TLI_DEFINE_ENUM_INTERNAL(sinhl)
904 TLI_DEFINE_STRING_INTERNAL("sinhl")
905 /// long double sinl(long double x);
906 TLI_DEFINE_ENUM_INTERNAL(sinl)
907 TLI_DEFINE_STRING_INTERNAL("sinl")
908 /// int siprintf(char *str, const char *format, ...);
909 TLI_DEFINE_ENUM_INTERNAL(siprintf)
910 TLI_DEFINE_STRING_INTERNAL("siprintf")
911 /// int snprintf(char *s, size_t n, const char *format, ...);
912 TLI_DEFINE_ENUM_INTERNAL(snprintf)
913 TLI_DEFINE_STRING_INTERNAL("snprintf")
914 /// int sprintf(char *str, const char *format, ...);
915 TLI_DEFINE_ENUM_INTERNAL(sprintf)
916 TLI_DEFINE_STRING_INTERNAL("sprintf")
917 /// double sqrt(double x);
918 TLI_DEFINE_ENUM_INTERNAL(sqrt)
919 TLI_DEFINE_STRING_INTERNAL("sqrt")
920 /// float sqrtf(float x);
921 TLI_DEFINE_ENUM_INTERNAL(sqrtf)
922 TLI_DEFINE_STRING_INTERNAL("sqrtf")
923 /// long double sqrtl(long double x);
924 TLI_DEFINE_ENUM_INTERNAL(sqrtl)
925 TLI_DEFINE_STRING_INTERNAL("sqrtl")
926 /// int sscanf(const char *s, const char *format, ... );
927 TLI_DEFINE_ENUM_INTERNAL(sscanf)
928 TLI_DEFINE_STRING_INTERNAL("sscanf")
929 /// int stat(const char *path, struct stat *buf);
930 TLI_DEFINE_ENUM_INTERNAL(stat)
931 TLI_DEFINE_STRING_INTERNAL("stat")
932 /// int stat64(const char *path, struct stat64 *buf);
933 TLI_DEFINE_ENUM_INTERNAL(stat64)
934 TLI_DEFINE_STRING_INTERNAL("stat64")
935 /// int statvfs(const char *path, struct statvfs *buf);
936 TLI_DEFINE_ENUM_INTERNAL(statvfs)
937 TLI_DEFINE_STRING_INTERNAL("statvfs")
938 /// int statvfs64(const char *path, struct statvfs64 *buf)
939 TLI_DEFINE_ENUM_INTERNAL(statvfs64)
940 TLI_DEFINE_STRING_INTERNAL("statvfs64")
941 /// char *stpcpy(char *s1, const char *s2);
942 TLI_DEFINE_ENUM_INTERNAL(stpcpy)
943 TLI_DEFINE_STRING_INTERNAL("stpcpy")
944 /// char *stpncpy(char *s1, const char *s2, size_t n);
945 TLI_DEFINE_ENUM_INTERNAL(stpncpy)
946 TLI_DEFINE_STRING_INTERNAL("stpncpy")
947 /// int strcasecmp(const char *s1, const char *s2);
948 TLI_DEFINE_ENUM_INTERNAL(strcasecmp)
949 TLI_DEFINE_STRING_INTERNAL("strcasecmp")
950 /// char *strcat(char *s1, const char *s2);
951 TLI_DEFINE_ENUM_INTERNAL(strcat)
952 TLI_DEFINE_STRING_INTERNAL("strcat")
953 /// char *strchr(const char *s, int c);
954 TLI_DEFINE_ENUM_INTERNAL(strchr)
955 TLI_DEFINE_STRING_INTERNAL("strchr")
956 /// int strcmp(const char *s1, const char *s2);
957 TLI_DEFINE_ENUM_INTERNAL(strcmp)
958 TLI_DEFINE_STRING_INTERNAL("strcmp")
959 /// int strcoll(const char *s1, const char *s2);
960 TLI_DEFINE_ENUM_INTERNAL(strcoll)
961 TLI_DEFINE_STRING_INTERNAL("strcoll")
962 /// char *strcpy(char *s1, const char *s2);
963 TLI_DEFINE_ENUM_INTERNAL(strcpy)
964 TLI_DEFINE_STRING_INTERNAL("strcpy")
965 /// size_t strcspn(const char *s1, const char *s2);
966 TLI_DEFINE_ENUM_INTERNAL(strcspn)
967 TLI_DEFINE_STRING_INTERNAL("strcspn")
968 /// char *strdup(const char *s1);
969 TLI_DEFINE_ENUM_INTERNAL(strdup)
970 TLI_DEFINE_STRING_INTERNAL("strdup")
971 /// size_t strlen(const char *s);
972 TLI_DEFINE_ENUM_INTERNAL(strlen)
973 TLI_DEFINE_STRING_INTERNAL("strlen")
974 /// int strncasecmp(const char *s1, const char *s2, size_t n);
975 TLI_DEFINE_ENUM_INTERNAL(strncasecmp)
976 TLI_DEFINE_STRING_INTERNAL("strncasecmp")
977 /// char *strncat(char *s1, const char *s2, size_t n);
978 TLI_DEFINE_ENUM_INTERNAL(strncat)
979 TLI_DEFINE_STRING_INTERNAL("strncat")
980 /// int strncmp(const char *s1, const char *s2, size_t n);
981 TLI_DEFINE_ENUM_INTERNAL(strncmp)
982 TLI_DEFINE_STRING_INTERNAL("strncmp")
983 /// char *strncpy(char *s1, const char *s2, size_t n);
984 TLI_DEFINE_ENUM_INTERNAL(strncpy)
985 TLI_DEFINE_STRING_INTERNAL("strncpy")
986 /// char *strndup(const char *s1, size_t n);
987 TLI_DEFINE_ENUM_INTERNAL(strndup)
988 TLI_DEFINE_STRING_INTERNAL("strndup")
989 /// size_t strnlen(const char *s, size_t maxlen);
990 TLI_DEFINE_ENUM_INTERNAL(strnlen)
991 TLI_DEFINE_STRING_INTERNAL("strnlen")
992 /// char *strpbrk(const char *s1, const char *s2);
993 TLI_DEFINE_ENUM_INTERNAL(strpbrk)
994 TLI_DEFINE_STRING_INTERNAL("strpbrk")
995 /// char *strrchr(const char *s, int c);
996 TLI_DEFINE_ENUM_INTERNAL(strrchr)
997 TLI_DEFINE_STRING_INTERNAL("strrchr")
998 /// size_t strspn(const char *s1, const char *s2);
999 TLI_DEFINE_ENUM_INTERNAL(strspn)
1000 TLI_DEFINE_STRING_INTERNAL("strspn")
1001 /// char *strstr(const char *s1, const char *s2);
1002 TLI_DEFINE_ENUM_INTERNAL(strstr)
1003 TLI_DEFINE_STRING_INTERNAL("strstr")
1004 /// double strtod(const char *nptr, char **endptr);
1005 TLI_DEFINE_ENUM_INTERNAL(strtod)
1006 TLI_DEFINE_STRING_INTERNAL("strtod")
1007 /// float strtof(const char *nptr, char **endptr);
1008 TLI_DEFINE_ENUM_INTERNAL(strtof)
1009 TLI_DEFINE_STRING_INTERNAL("strtof")
1010 // char *strtok(char *s1, const char *s2);
1011 TLI_DEFINE_ENUM_INTERNAL(strtok)
1012 TLI_DEFINE_STRING_INTERNAL("strtok")
1013 // char *strtok_r(char *s, const char *sep, char **lasts);
1014 TLI_DEFINE_ENUM_INTERNAL(strtok_r)
1015 TLI_DEFINE_STRING_INTERNAL("strtok_r")
1016 /// long int strtol(const char *nptr, char **endptr, int base);
1017 TLI_DEFINE_ENUM_INTERNAL(strtol)
1018 TLI_DEFINE_STRING_INTERNAL("strtol")
1019 /// long double strtold(const char *nptr, char **endptr);
1020 TLI_DEFINE_ENUM_INTERNAL(strtold)
1021 TLI_DEFINE_STRING_INTERNAL("strtold")
1022 /// long long int strtoll(const char *nptr, char **endptr, int base);
1023 TLI_DEFINE_ENUM_INTERNAL(strtoll)
1024 TLI_DEFINE_STRING_INTERNAL("strtoll")
1025 /// unsigned long int strtoul(const char *nptr, char **endptr, int base);
1026 TLI_DEFINE_ENUM_INTERNAL(strtoul)
1027 TLI_DEFINE_STRING_INTERNAL("strtoul")
1028 /// unsigned long long int strtoull(const char *nptr, char **endptr, int base);
1029 TLI_DEFINE_ENUM_INTERNAL(strtoull)
1030 TLI_DEFINE_STRING_INTERNAL("strtoull")
1031 /// size_t strxfrm(char *s1, const char *s2, size_t n);
1032 TLI_DEFINE_ENUM_INTERNAL(strxfrm)
1033 TLI_DEFINE_STRING_INTERNAL("strxfrm")
1034 /// int system(const char *command);
1035 TLI_DEFINE_ENUM_INTERNAL(system)
1036 TLI_DEFINE_STRING_INTERNAL("system")
1037 /// double tan(double x);
1038 TLI_DEFINE_ENUM_INTERNAL(tan)
1039 TLI_DEFINE_STRING_INTERNAL("tan")
1040 /// float tanf(float x);
1041 TLI_DEFINE_ENUM_INTERNAL(tanf)
1042 TLI_DEFINE_STRING_INTERNAL("tanf")
1043 /// double tanh(double x);
1044 TLI_DEFINE_ENUM_INTERNAL(tanh)
1045 TLI_DEFINE_STRING_INTERNAL("tanh")
1046 /// float tanhf(float x);
1047 TLI_DEFINE_ENUM_INTERNAL(tanhf)
1048 TLI_DEFINE_STRING_INTERNAL("tanhf")
1049 /// long double tanhl(long double x);
1050 TLI_DEFINE_ENUM_INTERNAL(tanhl)
1051 TLI_DEFINE_STRING_INTERNAL("tanhl")
1052 /// long double tanl(long double x);
1053 TLI_DEFINE_ENUM_INTERNAL(tanl)
1054 TLI_DEFINE_STRING_INTERNAL("tanl")
1055 /// clock_t times(struct tms *buffer);
1056 TLI_DEFINE_ENUM_INTERNAL(times)
1057 TLI_DEFINE_STRING_INTERNAL("times")
1058 /// FILE *tmpfile(void);
1059 TLI_DEFINE_ENUM_INTERNAL(tmpfile)
1060 TLI_DEFINE_STRING_INTERNAL("tmpfile")
1061 /// FILE *tmpfile64(void)
1062 TLI_DEFINE_ENUM_INTERNAL(tmpfile64)
1063 TLI_DEFINE_STRING_INTERNAL("tmpfile64")
1064 /// int toascii(int c);
1065 TLI_DEFINE_ENUM_INTERNAL(toascii)
1066 TLI_DEFINE_STRING_INTERNAL("toascii")
1067 /// double trunc(double x);
1068 TLI_DEFINE_ENUM_INTERNAL(trunc)
1069 TLI_DEFINE_STRING_INTERNAL("trunc")
1070 /// float truncf(float x);
1071 TLI_DEFINE_ENUM_INTERNAL(truncf)
1072 TLI_DEFINE_STRING_INTERNAL("truncf")
1073 /// long double truncl(long double x);
1074 TLI_DEFINE_ENUM_INTERNAL(truncl)
1075 TLI_DEFINE_STRING_INTERNAL("truncl")
1076 /// int uname(struct utsname *name);
1077 TLI_DEFINE_ENUM_INTERNAL(uname)
1078 TLI_DEFINE_STRING_INTERNAL("uname")
1079 /// int ungetc(int c, FILE *stream);
1080 TLI_DEFINE_ENUM_INTERNAL(ungetc)
1081 TLI_DEFINE_STRING_INTERNAL("ungetc")
1082 /// int unlink(const char *path);
1083 TLI_DEFINE_ENUM_INTERNAL(unlink)
1084 TLI_DEFINE_STRING_INTERNAL("unlink")
1085 /// int unsetenv(const char *name);
1086 TLI_DEFINE_ENUM_INTERNAL(unsetenv)
1087 TLI_DEFINE_STRING_INTERNAL("unsetenv")
1088 /// int utime(const char *path, const struct utimbuf *times);
1089 TLI_DEFINE_ENUM_INTERNAL(utime)
1090 TLI_DEFINE_STRING_INTERNAL("utime")
1091 /// int utimes(const char *path, const struct timeval times[2]);
1092 TLI_DEFINE_ENUM_INTERNAL(utimes)
1093 TLI_DEFINE_STRING_INTERNAL("utimes")
1094 /// void *valloc(size_t size);
1095 TLI_DEFINE_ENUM_INTERNAL(valloc)
1096 TLI_DEFINE_STRING_INTERNAL("valloc")
1097 /// int vfprintf(FILE *stream, const char *format, va_list ap);
1098 TLI_DEFINE_ENUM_INTERNAL(vfprintf)
1099 TLI_DEFINE_STRING_INTERNAL("vfprintf")
1100 /// int vfscanf(FILE *stream, const char *format, va_list arg);
1101 TLI_DEFINE_ENUM_INTERNAL(vfscanf)
1102 TLI_DEFINE_STRING_INTERNAL("vfscanf")
1103 /// int vprintf(const char *restrict format, va_list ap);
1104 TLI_DEFINE_ENUM_INTERNAL(vprintf)
1105 TLI_DEFINE_STRING_INTERNAL("vprintf")
1106 /// int vscanf(const char *format, va_list arg);
1107 TLI_DEFINE_ENUM_INTERNAL(vscanf)
1108 TLI_DEFINE_STRING_INTERNAL("vscanf")
1109 /// int vsnprintf(char *s, size_t n, const char *format, va_list ap);
1110 TLI_DEFINE_ENUM_INTERNAL(vsnprintf)
1111 TLI_DEFINE_STRING_INTERNAL("vsnprintf")
1112 /// int vsprintf(char *s, const char *format, va_list ap);
1113 TLI_DEFINE_ENUM_INTERNAL(vsprintf)
1114 TLI_DEFINE_STRING_INTERNAL("vsprintf")
1115 /// int vsscanf(const char *s, const char *format, va_list arg);
1116 TLI_DEFINE_ENUM_INTERNAL(vsscanf)
1117 TLI_DEFINE_STRING_INTERNAL("vsscanf")
1118 /// ssize_t write(int fildes, const void *buf, size_t nbyte);
1119 TLI_DEFINE_ENUM_INTERNAL(write)
1120 TLI_DEFINE_STRING_INTERNAL("write")
1121
1122 #undef TLI_DEFINE_ENUM_INTERNAL
1123 #undef TLI_DEFINE_STRING_INTERNAL
1124 #endif  // One of TLI_DEFINE_ENUM/STRING are defined.
1125
1126 #undef TLI_DEFINE_ENUM
1127 #undef TLI_DEFINE_STRING