add abi_*.cc
[musl-tools.git] / abi_func.cc
blobed88811378ab21e945e596144e4920201229e195
2 #define _GNU_SOURCE 1
3 #define _FILE_OFFSET_BITS 64
5 #include <aio.h>
6 #include <alloca.h>
7 #include <arpa/inet.h>
8 #include <arpa/nameser.h>
9 #include <assert.h>
10 #include <complex.h>
11 #include <crypt.h>
12 #include <ctype.h>
13 #include <dirent.h>
14 #include <dlfcn.h>
15 #include <err.h>
16 #include <errno.h>
17 #include <fcntl.h>
18 #include <fenv.h>
19 #include <float.h>
20 #include <fmtmsg.h>
21 #include <fnmatch.h>
22 #include <ftw.h>
23 #include <getopt.h>
24 #include <glob.h>
25 #include <grp.h>
26 #include <iconv.h>
27 #include <ifaddrs.h>
28 #include <inttypes.h>
29 #include <langinfo.h>
30 #include <libgen.h>
31 #include <libintl.h>
32 #include <link.h>
33 #include <locale.h>
34 #include <malloc.h>
35 #include <math.h>
36 #include <mntent.h>
37 #include <monetary.h>
38 #include <mqueue.h>
39 #include <net/if.h>
40 #include <netdb.h>
41 #include <netinet/ether.h>
42 #include <netinet/in.h>
43 #include <nl_types.h>
44 #include <poll.h>
45 #include <pthread.h>
46 #include <pty.h>
47 #include <pwd.h>
48 #include <regex.h>
49 #include <resolv.h>
50 #include <sched.h>
51 #include <search.h>
52 #include <semaphore.h>
53 #include <setjmp.h>
54 #include <shadow.h>
55 #include <signal.h>
56 #include <spawn.h>
57 #include <stdio.h>
58 #include <stdio_ext.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include <strings.h>
62 #include <stropts.h>
63 #include <sys/acct.h>
64 #include <sys/auxv.h>
65 #include <sys/epoll.h>
66 #include <sys/eventfd.h>
67 #include <sys/fanotify.h>
68 #include <sys/file.h>
69 #include <sys/fsuid.h>
70 #include <sys/inotify.h>
71 #include <sys/ioctl.h>
72 #include <sys/ipc.h>
73 #include <sys/klog.h>
74 #include <sys/mman.h>
75 #include <sys/mount.h>
76 #include <sys/msg.h>
77 #include <sys/personality.h>
78 #include <sys/prctl.h>
79 #include <sys/ptrace.h>
80 #include <sys/quota.h>
81 #include <sys/reboot.h>
82 #include <sys/resource.h>
83 #include <sys/select.h>
84 #include <sys/sem.h>
85 #include <sys/sendfile.h>
86 #include <sys/shm.h>
87 #include <sys/signalfd.h>
88 #include <sys/socket.h>
89 #include <sys/stat.h>
90 #include <sys/statfs.h>
91 #include <sys/statvfs.h>
92 #include <sys/swap.h>
93 #include <sys/sysinfo.h>
94 #include <sys/time.h>
95 #include <sys/timeb.h>
96 #include <sys/timerfd.h>
97 #include <sys/times.h>
98 #include <sys/timex.h>
99 #include <sys/uio.h>
100 #include <sys/un.h>
101 #include <sys/utsname.h>
102 #include <sys/wait.h>
103 #include <sys/xattr.h>
104 #include <syslog.h>
105 #include <termios.h>
106 #include <time.h>
107 #include <uchar.h>
108 #include <ucontext.h>
109 #include <ulimit.h>
110 #include <unistd.h>
111 #include <utime.h>
112 #include <utmp.h>
113 #include <utmpx.h>
114 #include <wchar.h>
115 #include <wctype.h>
116 #include <wordexp.h>
118 #define T(x) void t_##x(__typeof(x)*p){}
119 #ifdef __GLIBC__
120 #define M(x)
121 #undef sigsetjmp
122 #define sigsetjmp __sigsetjmp
123 #else
124 #define M(x) x
125 #endif
127 // T(ElfW)
128 T(_Exit)
129 T(__assert_fail)
130 T(__ctype_get_mb_cur_max)
131 T(__errno_location)
132 T(__fbufsize)
133 T(__flbf)
134 M(T(__flt_rounds))
135 T(__fpclassify)
136 T(__fpclassifyf)
137 T(__fpclassifyl)
138 T(__fpending)
139 T(__fpurge)
140 T(__freadable)
141 M(T(__freadahead))
142 T(__freading)
143 M(T(__freadptr))
144 M(T(__freadptrinc))
145 M(T(__fseterr))
146 T(__fsetlocking)
147 T(__fwritable)
148 T(__fwriting)
149 T(__h_errno_location)
150 T(__libc_current_sigrtmax)
151 T(__libc_current_sigrtmin)
152 T(__res_state)
153 T(__sched_cpucount)
154 T(__signbit)
155 T(__signbitf)
156 T(__signbitl)
157 T(_exit)
158 // _flush_cache
159 T(_flushlbf)
160 T(_longjmp)
161 M(T(_pthread_cleanup_pop))
162 M(T(_pthread_cleanup_push))
163 T(_setjmp)
164 T(a64l)
165 T(abort)
166 T(abs)
167 T(accept)
168 T(accept4)
169 T(access)
170 T(acct)
171 T(acos)
172 T(acosf)
173 T(acosh)
174 T(acoshf)
175 T(acoshl)
176 T(acosl)
177 T(addmntent)
178 T(adjtime)
179 T(adjtimex)
180 T(aio_cancel)
181 T(aio_error)
182 T(aio_fsync)
183 T(aio_read)
184 T(aio_return)
185 T(aio_suspend)
186 T(aio_write)
187 T(alarm)
188 T(aligned_alloc)
189 T(alloca)
190 T(alphasort)
191 T(asctime)
192 T(asctime_r)
193 T(asin)
194 T(asinf)
195 T(asinh)
196 T(asinhf)
197 T(asinhl)
198 T(asinl)
199 T(asprintf)
200 T(at_quick_exit)
201 T(atan)
202 T(atan2)
203 T(atan2f)
204 T(atan2l)
205 T(atanf)
206 T(atanh)
207 T(atanhf)
208 T(atanhl)
209 T(atanl)
210 T(atexit)
211 T(atof)
212 T(atoi)
213 T(atol)
214 T(atoll)
215 T(basename)
216 T(bcmp)
217 T(bcopy)
218 T(bind)
219 T(bind_textdomain_codeset)
220 T(bindtextdomain)
221 T(brk)
222 T(bsd_signal)
223 T(bsearch)
224 T(btowc)
225 T(bzero)
226 T(c16rtomb)
227 T(c32rtomb)
228 T(cabs)
229 T(cabsf)
230 T(cabsl)
231 // cachectl
232 // cacheflush
233 T(cacos)
234 T(cacosf)
235 T(cacosh)
236 T(cacoshf)
237 T(cacoshl)
238 T(cacosl)
239 // call_once
240 T(calloc)
241 T(carg)
242 T(cargf)
243 T(cargl)
244 T(casin)
245 T(casinf)
246 T(casinh)
247 T(casinhf)
248 T(casinhl)
249 T(casinl)
250 T(catan)
251 T(catanf)
252 T(catanh)
253 T(catanhf)
254 T(catanhl)
255 T(catanl)
256 T(catclose)
257 T(catgets)
258 T(catopen)
259 T(cbrt)
260 T(cbrtf)
261 T(cbrtl)
262 T(ccos)
263 T(ccosf)
264 T(ccosh)
265 T(ccoshf)
266 T(ccoshl)
267 T(ccosl)
268 T(ceil)
269 T(ceilf)
270 T(ceill)
271 T(cexp)
272 T(cexpf)
273 T(cexpl)
274 T(cfgetispeed)
275 T(cfgetospeed)
276 T(cfmakeraw)
277 T(cfsetispeed)
278 T(cfsetospeed)
279 T(cfsetspeed)
280 T(chdir)
281 T(chmod)
282 T(chown)
283 T(chroot)
284 T(cimag)
285 T(cimagf)
286 T(cimagl)
287 T(clearenv)
288 T(clearerr)
289 T(clearerr_unlocked)
290 T(clock)
291 T(clock_adjtime)
292 T(clock_getcpuclockid)
293 T(clock_getres)
294 T(clock_gettime)
295 T(clock_nanosleep)
296 T(clock_settime)
297 T(clog)
298 T(clogf)
299 T(clogl)
300 T(clone)
301 T(close)
302 T(closedir)
303 T(closelog)
304 // cnd_broadcast
305 // cnd_destroy
306 // cnd_init
307 // cnd_signal
308 // cnd_timedwait
309 // cnd_wait
310 T(confstr)
311 T(conj)
312 T(conjf)
313 T(conjl)
314 T(connect)
315 T(copysign)
316 T(copysignf)
317 T(copysignl)
318 T(cos)
319 T(cosf)
320 T(cosh)
321 T(coshf)
322 T(coshl)
323 T(cosl)
324 T(cpow)
325 T(cpowf)
326 T(cpowl)
327 T(cproj)
328 T(cprojf)
329 T(cprojl)
330 T(creal)
331 T(crealf)
332 T(creall)
333 T(creat)
334 T(crypt)
335 T(crypt_r)
336 T(csin)
337 T(csinf)
338 T(csinh)
339 T(csinhf)
340 T(csinhl)
341 T(csinl)
342 T(csqrt)
343 T(csqrtf)
344 T(csqrtl)
345 T(ctan)
346 T(ctanf)
347 T(ctanh)
348 T(ctanhf)
349 T(ctanhl)
350 T(ctanl)
351 T(ctermid)
352 T(ctime)
353 T(ctime_r)
354 T(cuserid)
355 T(daemon)
356 T(difftime)
357 T(dirfd)
358 T(dirname)
359 T(div)
360 T(dl_iterate_phdr)
361 T(dladdr)
362 T(dlclose)
363 T(dlerror)
364 T(dlinfo)
365 T(dlopen)
366 T(dlsym)
367 T(dn_comp)
368 T(dn_expand)
369 T(dn_skipname)
370 T(dprintf)
371 T(drand48)
372 T(drem)
373 T(dremf)
374 T(dup)
375 T(dup2)
376 T(dup3)
377 T(duplocale)
378 T(eaccess)
379 T(ecvt)
380 T(encrypt)
381 T(endgrent)
382 T(endhostent)
383 T(endmntent)
384 T(endnetent)
385 T(endprotoent)
386 T(endpwent)
387 T(endservent)
388 T(endspent)
389 T(endusershell)
390 T(endutent)
391 T(endutxent)
392 T(epoll_create)
393 T(epoll_create1)
394 T(epoll_ctl)
395 T(epoll_pwait)
396 T(epoll_wait)
397 T(erand48)
398 T(erf)
399 T(erfc)
400 T(erfcf)
401 T(erfcl)
402 T(erff)
403 T(erfl)
404 T(err)
405 T(errx)
406 T(ether_aton)
407 T(ether_aton_r)
408 T(ether_hostton)
409 T(ether_line)
410 T(ether_ntoa)
411 T(ether_ntoa_r)
412 T(ether_ntohost)
413 T(euidaccess)
414 T(eventfd)
415 T(eventfd_read)
416 T(eventfd_write)
417 T(execl)
418 T(execle)
419 T(execlp)
420 T(execv)
421 T(execve)
422 T(execvp)
423 T(execvpe)
424 T(exit)
425 T(exp)
426 T(exp10)
427 T(exp10f)
428 T(exp10l)
429 T(exp2)
430 T(exp2f)
431 T(exp2l)
432 T(expf)
433 T(expl)
434 T(expm1)
435 T(expm1f)
436 T(expm1l)
437 T(fabs)
438 T(fabsf)
439 T(fabsl)
440 T(faccessat)
441 T(fallocate)
442 T(fanotify_init)
443 T(fanotify_mark)
444 T(fchdir)
445 T(fchmod)
446 T(fchmodat)
447 T(fchown)
448 T(fchownat)
449 T(fclose)
450 T(fcntl)
451 T(fcvt)
452 T(fdatasync)
453 T(fdim)
454 T(fdimf)
455 T(fdiml)
456 T(fdopen)
457 T(fdopendir)
458 T(feclearexcept)
459 T(fegetenv)
460 T(fegetexceptflag)
461 T(fegetround)
462 T(feholdexcept)
463 T(feof)
464 T(feof_unlocked)
465 T(feraiseexcept)
466 T(ferror)
467 T(ferror_unlocked)
468 T(fesetenv)
469 T(fesetexceptflag)
470 T(fesetround)
471 T(fetestexcept)
472 T(feupdateenv)
473 T(fexecve)
474 T(fflush)
475 T(fflush_unlocked)
476 T(ffs)
477 T(ffsl)
478 T(ffsll)
479 T(fgetc)
480 T(fgetc_unlocked)
481 T(fgetgrent)
482 M(T(fgetln))
483 T(fgetpos)
484 T(fgetpwent)
485 T(fgets)
486 T(fgets_unlocked)
487 T(fgetspent)
488 T(fgetwc)
489 T(fgetws)
490 T(fgetxattr)
491 T(fileno)
492 T(fileno_unlocked)
493 T(finite)
494 T(finitef)
495 T(flistxattr)
496 T(flock)
497 T(flockfile)
498 T(floor)
499 T(floorf)
500 T(floorl)
501 T(fma)
502 T(fmaf)
503 T(fmal)
504 T(fmax)
505 T(fmaxf)
506 T(fmaxl)
507 T(fmemopen)
508 T(fmin)
509 T(fminf)
510 T(fminl)
511 T(fmod)
512 T(fmodf)
513 T(fmodl)
514 T(fmtmsg)
515 T(fnmatch)
516 T(fopen)
517 T(fork)
518 T(forkpty)
519 T(fpathconf)
520 T(fprintf)
521 T(fputc)
522 T(fputc_unlocked)
523 T(fputs)
524 T(fputs_unlocked)
525 T(fputwc)
526 T(fputws)
527 T(fread)
528 T(fread_unlocked)
529 T(free)
530 T(freeaddrinfo)
531 T(freeifaddrs)
532 T(freelocale)
533 T(fremovexattr)
534 T(freopen)
535 T(frexp)
536 T(frexpf)
537 T(frexpl)
538 T(fscanf)
539 T(fseek)
540 T(fseeko)
541 T(fsetpos)
542 T(fsetxattr)
543 T(fstat)
544 T(fstatat)
545 T(fstatfs)
546 T(fstatvfs)
547 T(fsync)
548 T(ftell)
549 T(ftello)
550 T(ftime)
551 T(ftok)
552 T(ftruncate)
553 T(ftrylockfile)
554 T(ftw)
555 T(funlockfile)
556 T(futimens)
557 T(futimes)
558 T(futimesat)
559 T(fwide)
560 T(fwprintf)
561 T(fwrite)
562 T(fwrite_unlocked)
563 T(fwscanf)
564 T(gai_strerror)
565 T(gcvt)
566 T(get_avphys_pages)
567 T(get_current_dir_name)
568 T(get_nprocs)
569 T(get_nprocs_conf)
570 T(get_phys_pages)
571 T(getaddrinfo)
572 T(getauxval)
573 T(getc)
574 T(getc_unlocked)
575 T(getchar)
576 T(getchar_unlocked)
577 T(getcontext)
578 T(getcwd)
579 T(getdate)
580 T(getdelim)
581 M(T(getdents))
582 T(getdomainname)
583 T(getdtablesize)
584 T(getegid)
585 T(getenv)
586 T(geteuid)
587 T(getgid)
588 T(getgrent)
589 T(getgrgid)
590 T(getgrgid_r)
591 T(getgrnam)
592 T(getgrnam_r)
593 T(getgrouplist)
594 T(getgroups)
595 T(gethostbyaddr)
596 T(gethostbyaddr_r)
597 T(gethostbyname)
598 T(gethostbyname2)
599 T(gethostbyname2_r)
600 T(gethostbyname_r)
601 T(gethostent)
602 T(gethostid)
603 T(gethostname)
604 T(getifaddrs)
605 T(getitimer)
606 T(getline)
607 T(getloadavg)
608 T(getlogin)
609 T(getlogin_r)
610 T(getmntent)
611 T(getmntent_r)
612 T(getnameinfo)
613 T(getnetbyaddr)
614 T(getnetbyname)
615 T(getnetent)
616 T(getopt)
617 T(getopt_long)
618 T(getopt_long_only)
619 T(getpagesize)
620 T(getpass)
621 T(getpeername)
622 T(getpgid)
623 T(getpgrp)
624 T(getpid)
625 T(getppid)
626 T(getpriority)
627 T(getprotobyname)
628 T(getprotobynumber)
629 T(getprotoent)
630 T(getpwent)
631 T(getpwnam)
632 T(getpwnam_r)
633 T(getpwuid)
634 T(getpwuid_r)
635 T(getresgid)
636 T(getresuid)
637 T(getrlimit)
638 T(getrusage)
639 M(T(gets))
640 T(getservbyname)
641 T(getservbyname_r)
642 T(getservbyport)
643 T(getservbyport_r)
644 T(getservent)
645 T(getsid)
646 T(getsockname)
647 T(getsockopt)
648 T(getspent)
649 T(getspnam)
650 T(getspnam_r)
651 T(getsubopt)
652 T(gettimeofday)
653 T(getuid)
654 T(getusershell)
655 T(getutent)
656 T(getutid)
657 T(getutline)
658 T(getutxent)
659 T(getutxid)
660 T(getutxline)
661 T(getw)
662 T(getwc)
663 T(getwchar)
664 T(getxattr)
665 T(glob)
666 T(globfree)
667 T(gmtime)
668 T(gmtime_r)
669 T(grantpt)
670 T(hasmntopt)
671 T(hcreate)
672 T(hcreate_r)
673 T(hdestroy)
674 T(hdestroy_r)
675 T(herror)
676 T(hsearch)
677 T(hsearch_r)
678 T(hstrerror)
679 T(htonl)
680 T(htons)
681 T(hypot)
682 T(hypotf)
683 T(hypotl)
684 T(iconv)
685 T(iconv_close)
686 T(iconv_open)
687 T(if_freenameindex)
688 T(if_indextoname)
689 T(if_nameindex)
690 T(if_nametoindex)
691 T(ilogb)
692 T(ilogbf)
693 T(ilogbl)
694 T(imaxabs)
695 T(imaxdiv)
696 M(T(index))
697 T(inet_addr)
698 T(inet_aton)
699 T(inet_lnaof)
700 T(inet_makeaddr)
701 T(inet_netof)
702 T(inet_network)
703 T(inet_ntoa)
704 T(inet_ntop)
705 T(inet_pton)
706 T(initgroups)
707 T(initstate)
708 T(inotify_add_watch)
709 T(inotify_init)
710 T(inotify_init1)
711 T(inotify_rm_watch)
712 T(insque)
713 T(ioctl)
714 // ioperm
715 // iopl
716 T(isalnum)
717 T(isalnum_l)
718 T(isalpha)
719 T(isalpha_l)
720 T(isascii)
721 T(isastream)
722 T(isatty)
723 T(isblank)
724 T(isblank_l)
725 T(iscntrl)
726 T(iscntrl_l)
727 T(isdigit)
728 T(isdigit_l)
729 T(isgraph)
730 T(isgraph_l)
731 T(islower)
732 T(islower_l)
733 T(isprint)
734 T(isprint_l)
735 T(ispunct)
736 T(ispunct_l)
737 M(T(issetugid))
738 T(isspace)
739 T(isspace_l)
740 T(isupper)
741 T(isupper_l)
742 T(iswalnum)
743 T(iswalnum_l)
744 T(iswalpha)
745 T(iswalpha_l)
746 T(iswblank)
747 T(iswblank_l)
748 T(iswcntrl)
749 T(iswcntrl_l)
750 T(iswctype)
751 T(iswctype_l)
752 T(iswdigit)
753 T(iswdigit_l)
754 T(iswgraph)
755 T(iswgraph_l)
756 T(iswlower)
757 T(iswlower_l)
758 T(iswprint)
759 T(iswprint_l)
760 T(iswpunct)
761 T(iswpunct_l)
762 T(iswspace)
763 T(iswspace_l)
764 T(iswupper)
765 T(iswupper_l)
766 T(iswxdigit)
767 T(iswxdigit_l)
768 T(isxdigit)
769 T(isxdigit_l)
770 T(j0)
771 T(j0f)
772 T(j1)
773 T(j1f)
774 T(jn)
775 T(jnf)
776 T(jrand48)
777 T(kill)
778 T(killpg)
779 T(klogctl)
780 T(l64a)
781 T(labs)
782 T(lchmod)
783 T(lchown)
784 T(lckpwdf)
785 T(lcong48)
786 T(ldexp)
787 T(ldexpf)
788 T(ldexpl)
789 T(ldiv)
790 T(lfind)
791 T(lgamma)
792 T(lgamma_r)
793 T(lgammaf)
794 T(lgammaf_r)
795 T(lgammal)
796 T(lgammal_r)
797 T(lgetxattr)
798 T(link)
799 T(linkat)
800 T(lio_listio)
801 T(listen)
802 T(listxattr)
803 T(llabs)
804 T(lldiv)
805 T(llistxattr)
806 T(llrint)
807 T(llrintf)
808 T(llrintl)
809 T(llround)
810 T(llroundf)
811 T(llroundl)
812 T(localeconv)
813 T(localtime)
814 T(localtime_r)
815 T(lockf)
816 T(log)
817 T(log10)
818 T(log10f)
819 T(log10l)
820 T(log1p)
821 T(log1pf)
822 T(log1pl)
823 T(log2)
824 T(log2f)
825 T(log2l)
826 T(logb)
827 T(logbf)
828 T(logbl)
829 T(logf)
830 T(login_tty)
831 T(logl)
832 T(longjmp)
833 T(lrand48)
834 T(lremovexattr)
835 T(lrint)
836 T(lrintf)
837 T(lrintl)
838 T(lround)
839 T(lroundf)
840 T(lroundl)
841 T(lsearch)
842 T(lseek)
843 T(lsetxattr)
844 T(lstat)
845 T(lutimes)
846 T(madvise)
847 T(makecontext)
848 T(malloc)
849 T(malloc_usable_size)
850 T(mblen)
851 T(mbrlen)
852 T(mbrtoc16)
853 T(mbrtoc32)
854 T(mbrtowc)
855 T(mbsinit)
856 T(mbsnrtowcs)
857 T(mbsrtowcs)
858 T(mbstowcs)
859 T(mbtowc)
860 T(memalign)
861 T(memccpy)
862 M(T(memchr))
863 T(memcmp)
864 T(memcpy)
865 T(memmem)
866 T(memmove)
867 T(mempcpy)
868 M(T(memrchr))
869 T(memset)
870 T(mincore)
871 T(mkdir)
872 T(mkdirat)
873 T(mkdtemp)
874 T(mkfifo)
875 T(mkfifoat)
876 T(mknod)
877 T(mknodat)
878 T(mkostemp)
879 T(mkostemps)
880 T(mkstemp)
881 T(mkstemps)
882 T(mktemp)
883 T(mktime)
884 T(mlock)
885 T(mlockall)
886 T(mmap)
887 T(modf)
888 T(modff)
889 T(modfl)
890 T(mount)
891 T(mprotect)
892 T(mq_close)
893 T(mq_getattr)
894 T(mq_notify)
895 T(mq_open)
896 T(mq_receive)
897 T(mq_send)
898 T(mq_setattr)
899 T(mq_timedreceive)
900 T(mq_timedsend)
901 T(mq_unlink)
902 T(mrand48)
903 T(mremap)
904 T(msgctl)
905 T(msgget)
906 T(msgrcv)
907 T(msgsnd)
908 T(msync)
909 // mtx_destroy
910 // mtx_init
911 // mtx_lock
912 // mtx_timedlock
913 // mtx_trylock
914 // mtx_unlock
915 T(munlock)
916 T(munlockall)
917 T(munmap)
918 T(nan)
919 T(nanf)
920 T(nanl)
921 T(nanosleep)
922 T(nearbyint)
923 T(nearbyintf)
924 T(nearbyintl)
925 T(newlocale)
926 T(nextafter)
927 T(nextafterf)
928 T(nextafterl)
929 T(nexttoward)
930 T(nexttowardf)
931 T(nexttowardl)
932 T(nftw)
933 T(nice)
934 T(nl_langinfo)
935 T(nl_langinfo_l)
936 T(nrand48)
937 T(ns_get16)
938 T(ns_get32)
939 T(ns_initparse)
940 T(ns_name_uncompress)
941 T(ns_parserr)
942 T(ns_put16)
943 T(ns_put32)
944 T(ns_skiprr)
945 T(ntohl)
946 T(ntohs)
947 T(open)
948 T(open_memstream)
949 T(open_wmemstream)
950 T(openat)
951 T(opendir)
952 T(openlog)
953 T(openpty)
954 T(pathconf)
955 T(pause)
956 T(pclose)
957 T(perror)
958 T(personality)
959 T(pipe)
960 T(pipe2)
961 T(poll)
962 T(popen)
963 M(T(posix_close))
964 T(posix_fadvise)
965 T(posix_fallocate)
966 T(posix_madvise)
967 T(posix_memalign)
968 T(posix_openpt)
969 T(posix_spawn)
970 T(posix_spawn_file_actions_addclose)
971 T(posix_spawn_file_actions_adddup2)
972 T(posix_spawn_file_actions_addopen)
973 T(posix_spawn_file_actions_destroy)
974 T(posix_spawn_file_actions_init)
975 T(posix_spawnattr_destroy)
976 T(posix_spawnattr_getflags)
977 T(posix_spawnattr_getpgroup)
978 T(posix_spawnattr_getschedparam)
979 T(posix_spawnattr_getschedpolicy)
980 T(posix_spawnattr_getsigdefault)
981 T(posix_spawnattr_getsigmask)
982 T(posix_spawnattr_init)
983 T(posix_spawnattr_setflags)
984 T(posix_spawnattr_setpgroup)
985 T(posix_spawnattr_setschedparam)
986 T(posix_spawnattr_setschedpolicy)
987 T(posix_spawnattr_setsigdefault)
988 T(posix_spawnattr_setsigmask)
989 T(posix_spawnp)
990 T(pow)
991 T(pow10)
992 T(pow10f)
993 T(pow10l)
994 T(powf)
995 T(powl)
996 T(ppoll)
997 T(prctl)
998 T(pread)
999 T(preadv)
1000 T(printf)
1001 T(prlimit)
1002 T(process_vm_readv)
1003 T(process_vm_writev)
1004 T(pselect)
1005 T(psiginfo)
1006 T(psignal)
1007 T(pthread_atfork)
1008 T(pthread_attr_destroy)
1009 T(pthread_attr_getdetachstate)
1010 T(pthread_attr_getguardsize)
1011 T(pthread_attr_getinheritsched)
1012 T(pthread_attr_getschedparam)
1013 T(pthread_attr_getschedpolicy)
1014 T(pthread_attr_getscope)
1015 T(pthread_attr_getstack)
1016 T(pthread_attr_getstacksize)
1017 T(pthread_attr_init)
1018 T(pthread_attr_setdetachstate)
1019 T(pthread_attr_setguardsize)
1020 T(pthread_attr_setinheritsched)
1021 T(pthread_attr_setschedparam)
1022 T(pthread_attr_setschedpolicy)
1023 T(pthread_attr_setscope)
1024 T(pthread_attr_setstack)
1025 T(pthread_attr_setstacksize)
1026 T(pthread_barrier_destroy)
1027 T(pthread_barrier_init)
1028 T(pthread_barrier_wait)
1029 T(pthread_barrierattr_destroy)
1030 T(pthread_barrierattr_getpshared)
1031 T(pthread_barrierattr_init)
1032 T(pthread_barrierattr_setpshared)
1033 T(pthread_cancel)
1034 T(pthread_cond_broadcast)
1035 T(pthread_cond_destroy)
1036 T(pthread_cond_init)
1037 T(pthread_cond_signal)
1038 T(pthread_cond_timedwait)
1039 T(pthread_cond_wait)
1040 T(pthread_condattr_destroy)
1041 T(pthread_condattr_getclock)
1042 T(pthread_condattr_getpshared)
1043 T(pthread_condattr_init)
1044 T(pthread_condattr_setclock)
1045 T(pthread_condattr_setpshared)
1046 T(pthread_create)
1047 T(pthread_detach)
1048 T(pthread_equal)
1049 T(pthread_exit)
1050 T(pthread_getaffinity_np)
1051 T(pthread_getattr_np)
1052 T(pthread_getconcurrency)
1053 T(pthread_getcpuclockid)
1054 T(pthread_getschedparam)
1055 T(pthread_getspecific)
1056 T(pthread_join)
1057 T(pthread_key_create)
1058 T(pthread_key_delete)
1059 T(pthread_kill)
1060 T(pthread_mutex_consistent)
1061 T(pthread_mutex_destroy)
1062 T(pthread_mutex_getprioceiling)
1063 T(pthread_mutex_init)
1064 T(pthread_mutex_lock)
1065 T(pthread_mutex_setprioceiling)
1066 T(pthread_mutex_timedlock)
1067 T(pthread_mutex_trylock)
1068 T(pthread_mutex_unlock)
1069 T(pthread_mutexattr_destroy)
1070 T(pthread_mutexattr_getprioceiling)
1071 T(pthread_mutexattr_getprotocol)
1072 T(pthread_mutexattr_getpshared)
1073 T(pthread_mutexattr_getrobust)
1074 T(pthread_mutexattr_gettype)
1075 T(pthread_mutexattr_init)
1076 T(pthread_mutexattr_setprioceiling)
1077 T(pthread_mutexattr_setprotocol)
1078 T(pthread_mutexattr_setpshared)
1079 T(pthread_mutexattr_setrobust)
1080 T(pthread_mutexattr_settype)
1081 T(pthread_once)
1082 T(pthread_rwlock_destroy)
1083 T(pthread_rwlock_init)
1084 T(pthread_rwlock_rdlock)
1085 T(pthread_rwlock_timedrdlock)
1086 T(pthread_rwlock_timedwrlock)
1087 T(pthread_rwlock_tryrdlock)
1088 T(pthread_rwlock_trywrlock)
1089 T(pthread_rwlock_unlock)
1090 T(pthread_rwlock_wrlock)
1091 T(pthread_rwlockattr_destroy)
1092 T(pthread_rwlockattr_getpshared)
1093 T(pthread_rwlockattr_init)
1094 T(pthread_rwlockattr_setpshared)
1095 T(pthread_self)
1096 T(pthread_setaffinity_np)
1097 T(pthread_setcancelstate)
1098 T(pthread_setcanceltype)
1099 T(pthread_setconcurrency)
1100 T(pthread_setschedparam)
1101 T(pthread_setschedprio)
1102 T(pthread_setspecific)
1103 T(pthread_sigmask)
1104 T(pthread_spin_destroy)
1105 T(pthread_spin_init)
1106 T(pthread_spin_lock)
1107 T(pthread_spin_trylock)
1108 T(pthread_spin_unlock)
1109 T(pthread_testcancel)
1110 T(ptrace)
1111 T(ptsname)
1112 T(ptsname_r)
1113 T(putc)
1114 T(putc_unlocked)
1115 T(putchar)
1116 T(putchar_unlocked)
1117 T(putenv)
1118 T(putgrent)
1119 T(putpwent)
1120 T(puts)
1121 T(putspent)
1122 T(pututline)
1123 T(pututxline)
1124 T(putw)
1125 T(putwc)
1126 T(putwchar)
1127 T(pwrite)
1128 T(pwritev)
1129 T(qsort)
1130 T(quick_exit)
1131 T(quotactl)
1132 T(raise)
1133 T(rand)
1134 T(rand_r)
1135 T(random)
1136 T(read)
1137 T(readahead)
1138 T(readdir)
1139 T(readdir_r)
1140 T(readlink)
1141 T(readlinkat)
1142 T(readv)
1143 T(realloc)
1144 T(realpath)
1145 T(reboot)
1146 T(recv)
1147 T(recvfrom)
1148 T(recvmmsg)
1149 T(recvmsg)
1150 T(regcomp)
1151 T(regerror)
1152 T(regexec)
1153 T(regfree)
1154 T(remainder)
1155 T(remainderf)
1156 T(remainderl)
1157 T(remap_file_pages)
1158 T(remove)
1159 T(removexattr)
1160 T(remque)
1161 T(remquo)
1162 T(remquof)
1163 T(remquol)
1164 T(rename)
1165 T(renameat)
1166 T(res_init)
1167 T(res_mkquery)
1168 T(res_query)
1169 T(res_querydomain)
1170 T(res_search)
1171 T(res_send)
1172 T(rewind)
1173 T(rewinddir)
1174 M(T(rindex))
1175 T(rint)
1176 T(rintf)
1177 T(rintl)
1178 T(rmdir)
1179 T(round)
1180 T(roundf)
1181 T(roundl)
1182 T(sbrk)
1183 T(scalb)
1184 T(scalbf)
1185 T(scalbln)
1186 T(scalblnf)
1187 T(scalblnl)
1188 T(scalbn)
1189 T(scalbnf)
1190 T(scalbnl)
1191 T(scandir)
1192 T(scanf)
1193 T(sched_get_priority_max)
1194 T(sched_get_priority_min)
1195 T(sched_getaffinity)
1196 T(sched_getcpu)
1197 T(sched_getparam)
1198 T(sched_getscheduler)
1199 T(sched_rr_get_interval)
1200 T(sched_setaffinity)
1201 T(sched_setparam)
1202 T(sched_setscheduler)
1203 T(sched_yield)
1204 T(seed48)
1205 T(seekdir)
1206 T(select)
1207 T(sem_close)
1208 T(sem_destroy)
1209 T(sem_getvalue)
1210 T(sem_init)
1211 T(sem_open)
1212 T(sem_post)
1213 T(sem_timedwait)
1214 T(sem_trywait)
1215 T(sem_unlink)
1216 T(sem_wait)
1217 T(semctl)
1218 T(semget)
1219 T(semop)
1220 T(semtimedop)
1221 T(send)
1222 T(sendfile)
1223 T(sendmmsg)
1224 T(sendmsg)
1225 T(sendto)
1226 T(setbuf)
1227 T(setbuffer)
1228 T(setcontext)
1229 T(setdomainname)
1230 T(setegid)
1231 T(setenv)
1232 T(seteuid)
1233 T(setfsgid)
1234 T(setfsuid)
1235 T(setgid)
1236 T(setgrent)
1237 T(setgroups)
1238 T(sethostent)
1239 T(sethostname)
1240 T(setitimer)
1241 T(setjmp)
1242 T(setkey)
1243 T(setlinebuf)
1244 T(setlocale)
1245 T(setlogmask)
1246 T(setmntent)
1247 T(setnetent)
1248 T(setns)
1249 T(setpgid)
1250 T(setpgrp)
1251 T(setpriority)
1252 T(setprotoent)
1253 T(setpwent)
1254 T(setregid)
1255 T(setresgid)
1256 T(setresuid)
1257 T(setreuid)
1258 T(setrlimit)
1259 T(setservent)
1260 T(setsid)
1261 T(setsockopt)
1262 T(setspent)
1263 T(setstate)
1264 T(settimeofday)
1265 T(setuid)
1266 T(setusershell)
1267 T(setutent)
1268 T(setutxent)
1269 T(setvbuf)
1270 T(setxattr)
1271 T(sgetspent)
1272 T(shm_open)
1273 T(shm_unlink)
1274 T(shmat)
1275 T(shmctl)
1276 T(shmdt)
1277 T(shmget)
1278 T(shutdown)
1279 T(sigaction)
1280 T(sigaddset)
1281 T(sigaltstack)
1282 T(sigandset)
1283 T(sigdelset)
1284 T(sigemptyset)
1285 T(sigfillset)
1286 T(sighold)
1287 T(sigignore)
1288 T(siginterrupt)
1289 T(sigisemptyset)
1290 T(sigismember)
1291 T(siglongjmp)
1292 T(signal)
1293 T(signalfd)
1294 T(significand)
1295 T(significandf)
1296 T(sigorset)
1297 T(sigpause)
1298 T(sigpending)
1299 T(sigprocmask)
1300 T(sigqueue)
1301 T(sigrelse)
1302 T(sigset)
1303 T(sigsetjmp)
1304 T(sigsuspend)
1305 T(sigtimedwait)
1306 T(sigwait)
1307 T(sigwaitinfo)
1308 T(sin)
1309 T(sincos)
1310 T(sincosf)
1311 T(sincosl)
1312 T(sinf)
1313 T(sinh)
1314 T(sinhf)
1315 T(sinhl)
1316 T(sinl)
1317 T(sleep)
1318 T(snprintf)
1319 T(sockatmark)
1320 T(socket)
1321 T(socketpair)
1322 T(splice)
1323 T(sprintf)
1324 T(sqrt)
1325 T(sqrtf)
1326 T(sqrtl)
1327 T(srand)
1328 T(srand48)
1329 T(srandom)
1330 T(sscanf)
1331 T(stat)
1332 T(statfs)
1333 T(statvfs)
1334 T(stime)
1335 T(stpcpy)
1336 T(stpncpy)
1337 T(strcasecmp)
1338 T(strcasecmp_l)
1339 M(T(strcasestr))
1340 T(strcat)
1341 M(T(strchr))
1342 M(T(strchrnul))
1343 T(strcmp)
1344 T(strcoll)
1345 T(strcoll_l)
1346 T(strcpy)
1347 T(strcspn)
1348 T(strdup)
1349 T(strerror)
1350 T(strerror_l)
1351 T(strerror_r)
1352 T(strfmon)
1353 T(strfmon_l)
1354 T(strftime)
1355 T(strftime_l)
1356 M(T(strlcat))
1357 M(T(strlcpy))
1358 T(strlen)
1359 T(strncasecmp)
1360 T(strncasecmp_l)
1361 T(strncat)
1362 T(strncmp)
1363 T(strncpy)
1364 T(strndup)
1365 T(strnlen)
1366 M(T(strpbrk))
1367 T(strptime)
1368 M(T(strrchr))
1369 T(strsep)
1370 T(strsignal)
1371 T(strspn)
1372 M(T(strstr))
1373 T(strtod)
1374 T(strtod_l)
1375 T(strtof)
1376 T(strtof_l)
1377 T(strtoimax)
1378 T(strtok)
1379 T(strtok_r)
1380 T(strtol)
1381 T(strtold)
1382 T(strtold_l)
1383 T(strtoll)
1384 T(strtoul)
1385 T(strtoull)
1386 T(strtoumax)
1387 T(strverscmp)
1388 T(strxfrm)
1389 T(strxfrm_l)
1390 T(swab)
1391 T(swapcontext)
1392 T(swapoff)
1393 T(swapon)
1394 T(swprintf)
1395 T(swscanf)
1396 T(symlink)
1397 T(symlinkat)
1398 T(sync)
1399 T(sync_file_range)
1400 T(syncfs)
1401 T(syscall)
1402 T(sysconf)
1403 T(sysinfo)
1404 T(syslog)
1405 T(system)
1406 T(tan)
1407 T(tanf)
1408 T(tanh)
1409 T(tanhf)
1410 T(tanhl)
1411 T(tanl)
1412 T(tcdrain)
1413 T(tcflow)
1414 T(tcflush)
1415 T(tcgetattr)
1416 T(tcgetpgrp)
1417 T(tcgetsid)
1418 T(tcsendbreak)
1419 T(tcsetattr)
1420 T(tcsetpgrp)
1421 T(tdelete)
1422 T(tdestroy)
1423 T(tee)
1424 T(telldir)
1425 T(tempnam)
1426 T(textdomain)
1427 T(tfind)
1428 T(tgamma)
1429 T(tgammaf)
1430 T(tgammal)
1431 // thrd_create
1432 // thrd_current
1433 // thrd_detach
1434 // thrd_equal
1435 // thrd_exit
1436 // thrd_join
1437 // thrd_sleep
1438 // thrd_yield
1439 T(time)
1440 T(timegm)
1441 T(timer_create)
1442 T(timer_delete)
1443 T(timer_getoverrun)
1444 T(timer_gettime)
1445 T(timer_settime)
1446 T(timerfd_create)
1447 T(timerfd_gettime)
1448 T(timerfd_settime)
1449 T(times)
1450 T(timespec_get)
1451 T(tmpfile)
1452 T(tmpnam)
1453 T(toascii)
1454 T(tolower)
1455 T(tolower_l)
1456 T(toupper)
1457 T(toupper_l)
1458 T(towctrans)
1459 T(towctrans_l)
1460 T(towlower)
1461 T(towlower_l)
1462 T(towupper)
1463 T(towupper_l)
1464 T(trunc)
1465 T(truncate)
1466 T(truncf)
1467 T(truncl)
1468 T(tsearch)
1469 // tss_create
1470 // tss_delete
1471 // tss_get
1472 // tss_set
1473 T(ttyname)
1474 T(ttyname_r)
1475 T(twalk)
1476 T(tzset)
1477 T(ualarm)
1478 T(ulckpwdf)
1479 T(ulimit)
1480 T(umask)
1481 T(umount)
1482 T(umount2)
1483 T(uname)
1484 T(ungetc)
1485 T(ungetwc)
1486 T(unlink)
1487 T(unlinkat)
1488 T(unlockpt)
1489 T(unsetenv)
1490 T(unshare)
1491 T(updwtmp)
1492 T(updwtmpx)
1493 T(uselocale)
1494 T(usleep)
1495 T(utime)
1496 T(utimensat)
1497 T(utimes)
1498 T(utmpname)
1499 T(utmpxname)
1500 T(valloc)
1501 T(vasprintf)
1502 T(vdprintf)
1503 T(verr)
1504 T(verrx)
1505 T(versionsort)
1506 T(vfork)
1507 T(vfprintf)
1508 T(vfscanf)
1509 T(vfwprintf)
1510 T(vfwscanf)
1511 T(vhangup)
1512 T(vmsplice)
1513 T(vprintf)
1514 T(vscanf)
1515 T(vsnprintf)
1516 T(vsprintf)
1517 T(vsscanf)
1518 T(vswprintf)
1519 T(vswscanf)
1520 T(vsyslog)
1521 T(vwarn)
1522 T(vwarnx)
1523 T(vwprintf)
1524 T(vwscanf)
1525 T(wait)
1526 T(wait3)
1527 T(wait4)
1528 T(waitid)
1529 T(waitpid)
1530 T(warn)
1531 T(warnx)
1532 T(wcpcpy)
1533 T(wcpncpy)
1534 T(wcrtomb)
1535 T(wcscasecmp)
1536 T(wcscasecmp_l)
1537 T(wcscat)
1538 M(T(wcschr))
1539 T(wcscmp)
1540 T(wcscoll)
1541 T(wcscoll_l)
1542 T(wcscpy)
1543 T(wcscspn)
1544 T(wcsdup)
1545 T(wcsftime)
1546 T(wcslen)
1547 T(wcsncasecmp)
1548 T(wcsncasecmp_l)
1549 T(wcsncat)
1550 T(wcsncmp)
1551 T(wcsncpy)
1552 T(wcsnlen)
1553 T(wcsnrtombs)
1554 M(T(wcspbrk))
1555 M(T(wcsrchr))
1556 T(wcsrtombs)
1557 T(wcsspn)
1558 M(T(wcsstr))
1559 T(wcstod)
1560 T(wcstof)
1561 T(wcstoimax)
1562 T(wcstok)
1563 T(wcstol)
1564 T(wcstold)
1565 T(wcstoll)
1566 T(wcstombs)
1567 T(wcstoul)
1568 T(wcstoull)
1569 T(wcstoumax)
1570 M(T(wcswcs))
1571 T(wcswidth)
1572 T(wcsxfrm)
1573 T(wcsxfrm_l)
1574 T(wctob)
1575 T(wctomb)
1576 T(wctrans)
1577 T(wctrans_l)
1578 T(wctype)
1579 T(wctype_l)
1580 T(wcwidth)
1581 M(T(wmemchr))
1582 T(wmemcmp)
1583 T(wmemcpy)
1584 T(wmemmove)
1585 T(wmemset)
1586 T(wordexp)
1587 T(wordfree)
1588 T(wprintf)
1589 T(write)
1590 T(writev)
1591 T(wscanf)
1592 T(y0)
1593 T(y0f)
1594 T(y1)
1595 T(y1f)
1596 T(yn)
1597 T(ynf)