update tables (new libm)
authornsz <nsz@port70.net>
Tue, 13 Mar 2012 05:41:50 +0000 (06:41 +0100)
committernsz <nsz@port70.net>
Tue, 13 Mar 2012 05:41:50 +0000 (06:41 +0100)
data/musl.problems
tab_c99.html
tab_posix.html

index d7b1967..1433a1f 100644 (file)
@@ -2,6 +2,9 @@ proto   basename        string.h        libgen.h        char *basename();       char *basename(char *);
 proto  basename        string.h        char*() char*(char*)    char *basename();       char *basename(char *path);
 nodecl cfmakeraw       T
 nodecl cfsetspeed      W
+proto  cimag   complex/cimag.c complex.h       double()(double complex)        double(double complex)
+proto  cimagf  complex/cimagf.c        complex.h       float()(float complex)  float(float complex)
+proto  cimagl  complex/cimagl.c        complex.h       long double()(long double complex)      long double(long double complex)
 nodecl clearerr_unlocked       W
 nodecl crypt_r W
 nodecl daemon  T
@@ -30,7 +33,6 @@ nodecl        putw    T
 nodecl putwc_unlocked  W
 nodecl putwchar_unlocked       W
 proto  qsort   stdlib/qsort.c  stdlib.h        void(void*,size_t,size_t,)      void(void*,size_t,size_t,int(*)(const void*,const void*))
-nodecl scalbf  T
 proto  seed48  prng/seed48.c   stdlib.h        unsigned short*(unsigned short*)        unsigned short*(unsigned short[])
 proto  setgroups       unistd.h        grp.h   int setgroups(size_t, const gid_t []);  int setgroups(size_t, const gid_t *);
 proto  setgroups       linux/setgroups.c       grp.h   int(size_t,const gid_t[])       int(size_t,const gid_t*)
index 7e57f1b..4df130f 100644 (file)
@@ -1,80 +1,80 @@
 <h3>musl vs c99 api</h3>
-<h4>commit</h4><p>commit <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=commit;h=405ce58dcf59ecfb3e245fed0b96b1f35fbeaec1">405ce58dcf59ecfb3e245fed0b96b1f35fbeaec1</a><br>Date:   Fri Mar 2 22:35:37 2012 -0500<br><br>    fix nan/infinity macros in math.h, etc.<br>    <br>    the previous version not only failed to work in c++, but also failed<br>    to produce constant expressions, making the macros useless as<br>    initializers for objects of static storage duration.<br>    <br>    gcc 3.3 and later have builtins for these, which sadly seem to be the<br>    most "portable" solution. the alternative definitions produce<br>    exceptions (for NAN) and compiler warnings (for INFINITY) on newer<br>    versions of gcc.
+<h4>commit</h4><p>commit <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=commit;h=b69f695acedd4ce2798ef9ea28d834ceccc789bd">b69f695acedd4ce2798ef9ea28d834ceccc789bd</a><br>Date:   Tue Mar 13 01:17:53 2012 -0400<br><br>    first commit of the new libm!<br>    <br>    thanks to the hard work of Szabolcs Nagy (nsz), identifying the best<br>    (from correctness and license standpoint) implementations from freebsd<br>    and openbsd and cleaning them up! musl should now fully support c99<br>    float and long double math functions, and has near-complete complex<br>    math support. tgmath should also work (fully on gcc-compatible<br>    compilers, and mostly on any c99 compiler).<br>    <br>    based largely on commit 0376d44a890fea261506f1fc63833e7a686dca19 from<br>    nsz's libm git repo, with some additions (dummy versions of a few<br>    missing long double complex functions, etc.) by me.<br>    <br>    various cleanups still need to be made, including re-adding (if<br>    they're correct) some asm functions that were dropped.
 <h4>legend</h4><ul><li>status: musl implementation status summary<ul><li>(empty) - implemented<li>nosym - prototype found in include files (see decl) but not in libc.a (see sym)<li>nodecl - symbol is in libc.a but not declared in a public header<li>missing - neither in include files (see decl) nor in libc.a (see sym)</ul><li>sym: external symbol kind as found by `nm libc.a` (symbol kind only reported once)<ul><li>C - symbol is common (uninitialized data)<li>D - symbol is in the initialized data section<li>R - symbol is in the read only data section<li>T - symbol is in the text section<li>V - weak object<li>W - weak symbol</ul><li>decl: kind of declaration as found by `ctags -R include` (every occurance is reported, arch specific definitions are not linked)<ul><li>d - macro definition<li>t - typedef<li>s - struct declaration<li>u - union declaration<li>p - function prototype<li>x - external and forward variable declaration</ul></ul>
 <h4>table</h4><table border=1><tr><th colspan=3>musl<th colspan=4>c99<tr><th>status<th>sym<th>decl<th>name<th>header<th>proto<th>section
 <tr><td>missing<td>&#160;<td>&#160;<td>NDEBUG<td>assert.h<td>&#160;<td>B.1 Diagnostics
 <tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/assert.h#l1">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/assert.h#l4">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/assert.h#l6">d</a> <td>assert<td>assert.h<td>void assert(scalar expression);<td>B.1 Diagnostics
-<tr><td>missing<td>&#160;<td>&#160;<td>complex<td>complex.h<td>&#160;<td>B.2 Complex
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l8">d</a> <td>complex<td>complex.h<td>&#160;<td>B.2 Complex
 <tr><td>missing<td>&#160;<td>&#160;<td>imaginary<td>complex.h<td>&#160;<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>I<td>complex.h<td>&#160;<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>_Complex_I<td>complex.h<td>&#160;<td>B.2 Complex
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l10">d</a> <td>I<td>complex.h<td>&#160;<td>B.2 Complex
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l9">d</a> <td>_Complex_I<td>complex.h<td>&#160;<td>B.2 Complex
 <tr><td>missing<td>&#160;<td>&#160;<td>_Imaginary_I<td>complex.h<td>&#160;<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cacos<td>complex.h<td>double complex cacos(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cacosf<td>complex.h<td>float complex cacosf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cacosl<td>complex.h<td>long double complex cacosl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>casin<td>complex.h<td>double complex casin(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>casinf<td>complex.h<td>float complex casinf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>casinl<td>complex.h<td>long double complex casinl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>catan<td>complex.h<td>double complex catan(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>catanf<td>complex.h<td>float complex catanf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>catanl<td>complex.h<td>long double complex catanl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ccos<td>complex.h<td>double complex ccos(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ccosf<td>complex.h<td>float complex ccosf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ccosl<td>complex.h<td>long double complex ccosl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csin<td>complex.h<td>double complex csin(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csinf<td>complex.h<td>float complex csinf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csinl<td>complex.h<td>long double complex csinl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ctan<td>complex.h<td>double complex ctan(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ctanf<td>complex.h<td>float complex ctanf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ctanl<td>complex.h<td>long double complex ctanl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cacosh<td>complex.h<td>double complex cacosh(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cacoshf<td>complex.h<td>float complex cacoshf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cacoshl<td>complex.h<td>long double complex cacoshl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>casinh<td>complex.h<td>double complex casinh(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>casinhf<td>complex.h<td>float complex casinhf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>casinhl<td>complex.h<td>long double complex casinhl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>catanh<td>complex.h<td>double complex catanh(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>catanhf<td>complex.h<td>float complex catanhf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>catanhl<td>complex.h<td>long double complex catanhl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ccosh<td>complex.h<td>double complex ccosh(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ccoshf<td>complex.h<td>float complex ccoshf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ccoshl<td>complex.h<td>long double complex ccoshl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csinh<td>complex.h<td>double complex csinh(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csinhf<td>complex.h<td>float complex csinhf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csinhl<td>complex.h<td>long double complex csinhl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ctanh<td>complex.h<td>double complex ctanh(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ctanhf<td>complex.h<td>float complex ctanhf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>ctanhl<td>complex.h<td>long double complex ctanhl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cexp<td>complex.h<td>double complex cexp(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cexpf<td>complex.h<td>float complex cexpf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cexpl<td>complex.h<td>long double complex cexpl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>clog<td>complex.h<td>double complex clog(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>clogf<td>complex.h<td>float complex clogf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>clogl<td>complex.h<td>long double complex clogl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cabs<td>complex.h<td>double cabs(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cabsf<td>complex.h<td>float cabsf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cabsl<td>complex.h<td>long double cabsl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cpow<td>complex.h<td>double complex cpow(double complex x, double complex y);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cpowf<td>complex.h<td>float complex cpowf(float complex x, float complex y);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cpowl<td>complex.h<td>long double complex cpowl(long double complex x, long double complex y);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csqrt<td>complex.h<td>double complex csqrt(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csqrtf<td>complex.h<td>float complex csqrtf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>csqrtl<td>complex.h<td>long double complex csqrtl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>carg<td>complex.h<td>double carg(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cargf<td>complex.h<td>float cargf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cargl<td>complex.h<td>long double cargl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cimag<td>complex.h<td>double cimag(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cimagf<td>complex.h<td>float cimagf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cimagl<td>complex.h<td>long double cimagl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>conj<td>complex.h<td>double complex conj(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>conjf<td>complex.h<td>float complex conjf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>conjl<td>complex.h<td>long double complex conjl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cproj<td>complex.h<td>double complex cproj(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cprojf<td>complex.h<td>float complex cprojf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>cprojl<td>complex.h<td>long double complex cprojl(long double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>creal<td>complex.h<td>double creal(double complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>crealf<td>complex.h<td>float crealf(float complex z);<td>B.2 Complex
-<tr><td>missing<td>&#160;<td>&#160;<td>creall<td>complex.h<td>long double creall(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l12">p</a> <td>cacos<td>complex.h<td>double complex cacos(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l13">p</a> <td>cacosf<td>complex.h<td>float complex cacosf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l14">p</a> <td>cacosl<td>complex.h<td>long double complex cacosl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l16">p</a> <td>casin<td>complex.h<td>double complex casin(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l17">p</a> <td>casinf<td>complex.h<td>float complex casinf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l18">p</a> <td>casinl<td>complex.h<td>long double complex casinl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l20">p</a> <td>catan<td>complex.h<td>double complex catan(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l21">p</a> <td>catanf<td>complex.h<td>float complex catanf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l22">p</a> <td>catanl<td>complex.h<td>long double complex catanl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l24">p</a> <td>ccos<td>complex.h<td>double complex ccos(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l25">p</a> <td>ccosf<td>complex.h<td>float complex ccosf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l26">p</a> <td>ccosl<td>complex.h<td>long double complex ccosl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l28">p</a> <td>csin<td>complex.h<td>double complex csin(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l29">p</a> <td>csinf<td>complex.h<td>float complex csinf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l30">p</a> <td>csinl<td>complex.h<td>long double complex csinl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l32">p</a> <td>ctan<td>complex.h<td>double complex ctan(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l33">p</a> <td>ctanf<td>complex.h<td>float complex ctanf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l34">p</a> <td>ctanl<td>complex.h<td>long double complex ctanl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l36">p</a> <td>cacosh<td>complex.h<td>double complex cacosh(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l37">p</a> <td>cacoshf<td>complex.h<td>float complex cacoshf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l38">p</a> <td>cacoshl<td>complex.h<td>long double complex cacoshl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l40">p</a> <td>casinh<td>complex.h<td>double complex casinh(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l41">p</a> <td>casinhf<td>complex.h<td>float complex casinhf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l42">p</a> <td>casinhl<td>complex.h<td>long double complex casinhl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l44">p</a> <td>catanh<td>complex.h<td>double complex catanh(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l45">p</a> <td>catanhf<td>complex.h<td>float complex catanhf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l46">p</a> <td>catanhl<td>complex.h<td>long double complex catanhl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l48">p</a> <td>ccosh<td>complex.h<td>double complex ccosh(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l49">p</a> <td>ccoshf<td>complex.h<td>float complex ccoshf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l50">p</a> <td>ccoshl<td>complex.h<td>long double complex ccoshl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l52">p</a> <td>csinh<td>complex.h<td>double complex csinh(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l53">p</a> <td>csinhf<td>complex.h<td>float complex csinhf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l54">p</a> <td>csinhl<td>complex.h<td>long double complex csinhl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l56">p</a> <td>ctanh<td>complex.h<td>double complex ctanh(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l57">p</a> <td>ctanhf<td>complex.h<td>float complex ctanhf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l58">p</a> <td>ctanhl<td>complex.h<td>long double complex ctanhl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l60">p</a> <td>cexp<td>complex.h<td>double complex cexp(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l61">p</a> <td>cexpf<td>complex.h<td>float complex cexpf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l62">p</a> <td>cexpl<td>complex.h<td>long double complex cexpl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l64">p</a> <td>clog<td>complex.h<td>double complex clog(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l65">p</a> <td>clogf<td>complex.h<td>float complex clogf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l66">p</a> <td>clogl<td>complex.h<td>long double complex clogl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l68">p</a> <td>cabs<td>complex.h<td>double cabs(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l69">p</a> <td>cabsf<td>complex.h<td>float cabsf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l70">p</a> <td>cabsl<td>complex.h<td>long double cabsl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l72">p</a> <td>cpow<td>complex.h<td>double complex cpow(double complex x, double complex y);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l73">p</a> <td>cpowf<td>complex.h<td>float complex cpowf(float complex x, float complex y);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l74">p</a> <td>cpowl<td>complex.h<td>long double complex cpowl(long double complex x, long double complex y);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l76">p</a> <td>csqrt<td>complex.h<td>double complex csqrt(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l77">p</a> <td>csqrtf<td>complex.h<td>float complex csqrtf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l78">p</a> <td>csqrtl<td>complex.h<td>long double complex csqrtl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l80">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l133">d</a> <td>carg<td>complex.h<td>double carg(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l81">p</a> <td>cargf<td>complex.h<td>float cargf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l82">p</a> <td>cargl<td>complex.h<td>long double cargl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l84">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l136">d</a> <td>cimag<td>complex.h<td>double cimag(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l85">p</a> <td>cimagf<td>complex.h<td>float cimagf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l86">p</a> <td>cimagl<td>complex.h<td>long double cimagl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l88">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l137">d</a> <td>conj<td>complex.h<td>double complex conj(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l89">p</a> <td>conjf<td>complex.h<td>float complex conjf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l90">p</a> <td>conjl<td>complex.h<td>long double complex conjl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l92">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l141">d</a> <td>cproj<td>complex.h<td>double complex cproj(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l93">p</a> <td>cprojf<td>complex.h<td>float complex cprojf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l94">p</a> <td>cprojl<td>complex.h<td>long double complex cprojl(long double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l96">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l142">d</a> <td>creal<td>complex.h<td>double creal(double complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l97">p</a> <td>crealf<td>complex.h<td>float crealf(float complex z);<td>B.2 Complex
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l98">p</a> <td>creall<td>complex.h<td>long double creall(long double complex z);<td>B.2 Complex
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l8">p</a> <td>isalnum<td>ctype.h<td>int isalnum(int c);<td>B.3 Character handling
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l23">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l9">p</a> <td>isalpha<td>ctype.h<td>int isalpha(int c);<td>B.3 Character handling
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l10">p</a> <td>isblank<td>ctype.h<td>int isblank(int c);<td>B.3 Character handling
 <tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l29">d</a> <td>math_errhandling<td>math.h<td>&#160;<td>B.11 Mathematics
 <tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l16">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l19">d</a> <td>NAN<td>math.h<td>&#160;<td>B.11 Mathematics
 <tr><td>missing<td>&#160;<td>&#160;<td>FP_FAST_FMAF<td>math.h<td>&#160;<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l44">d</a> <td>fpclassify<td>math.h<td>int fpclassify(real-floating x);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l52">d</a> <td>isfinite<td>math.h<td>int isfinite(real-floating x);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l49">d</a> <td>isinf<td>math.h<td>int isinf(real-floating x);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l50">d</a> <td>isnan<td>math.h<td>int isnan(real-floating x);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l51">d</a> <td>isnormal<td>math.h<td>int isnormal(real-floating x);<td>B.11 Mathematics
-<tr><td>missing<td>&#160;<td>&#160;<td>signbit<td>math.h<td>int signbit(real-floating x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l76">p</a> <td>acos<td>math.h<td>double acos(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l77">p</a> <td>acosf<td>math.h<td>float acosf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l78">p</a> <td>acosl<td>math.h<td>long double acosl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l84">p</a> <td>asin<td>math.h<td>double asin(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l85">p</a> <td>asinf<td>math.h<td>float asinf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l86">p</a> <td>asinl<td>math.h<td>long double asinl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l92">p</a> <td>atan<td>math.h<td>double atan(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l93">p</a> <td>atanf<td>math.h<td>float atanf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l94">p</a> <td>atanl<td>math.h<td>long double atanl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l96">p</a> <td>atan2<td>math.h<td>double atan2(double y, double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l97">p</a> <td>atan2f<td>math.h<td>float atan2f(float y, float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l98">p</a> <td>atan2l<td>math.h<td>long double atan2l(long double y, long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l116">p</a> <td>cos<td>math.h<td>double cos(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l117">p</a> <td>cosf<td>math.h<td>float cosf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l118">p</a> <td>cosl<td>math.h<td>long double cosl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l276">p</a> <td>sin<td>math.h<td>double sin(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l277">p</a> <td>sinf<td>math.h<td>float sinf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l278">p</a> <td>sinl<td>math.h<td>long double sinl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l288">p</a> <td>tan<td>math.h<td>double tan(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l289">p</a> <td>tanf<td>math.h<td>float tanf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l290">p</a> <td>tanl<td>math.h<td>long double tanl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l80">p</a> <td>acosh<td>math.h<td>double acosh(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l81">p</a> <td>acoshf<td>math.h<td>float acoshf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l82">p</a> <td>acoshl<td>math.h<td>long double acoshl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l88">p</a> <td>asinh<td>math.h<td>double asinh(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l89">p</a> <td>asinhf<td>math.h<td>float asinhf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l90">p</a> <td>asinhl<td>math.h<td>long double asinhl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l100">p</a> <td>atanh<td>math.h<td>double atanh(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l101">p</a> <td>atanhf<td>math.h<td>float atanhf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l102">p</a> <td>atanhl<td>math.h<td>long double atanhl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l120">p</a> <td>cosh<td>math.h<td>double cosh(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l121">p</a> <td>coshf<td>math.h<td>float coshf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l122">p</a> <td>coshl<td>math.h<td>long double coshl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l280">p</a> <td>sinh<td>math.h<td>double sinh(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l281">p</a> <td>sinhf<td>math.h<td>float sinhf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l282">p</a> <td>sinhl<td>math.h<td>long double sinhl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l292">p</a> <td>tanh<td>math.h<td>double tanh(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l293">p</a> <td>tanhf<td>math.h<td>float tanhf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l294">p</a> <td>tanhl<td>math.h<td>long double tanhl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l132">p</a> <td>exp<td>math.h<td>double exp(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l133">p</a> <td>expf<td>math.h<td>float expf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l134">p</a> <td>expl<td>math.h<td>long double expl(long double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l136">p</a> <td>exp2<td>math.h<td>double exp2(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l137">p</a> <td>exp2f<td>math.h<td>float exp2f(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l138">p</a> <td>exp2l<td>math.h<td>long double exp2l(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l140">p</a> <td>expm1<td>math.h<td>double expm1(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l141">p</a> <td>expm1f<td>math.h<td>float expm1f(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l142">p</a> <td>expm1l<td>math.h<td>long double expm1l(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l172">p</a> <td>frexp<td>math.h<td>double frexp(double value, int *exp);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l173">p</a> <td>frexpf<td>math.h<td>float frexpf(float value, int *exp);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l174">p</a> <td>frexpl<td>math.h<td>long double frexpl(long double value, int *exp);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l180">p</a> <td>ilogb<td>math.h<td>int ilogb(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l181">p</a> <td>ilogbf<td>math.h<td>int ilogbf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l182">p</a> <td>ilogbl<td>math.h<td>int ilogbl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l184">p</a> <td>ldexp<td>math.h<td>double ldexp(double x, int exp);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l185">p</a> <td>ldexpf<td>math.h<td>float ldexpf(float x, int exp);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l186">p</a> <td>ldexpl<td>math.h<td>long double ldexpl(long double x, int exp);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l200">p</a> <td>log<td>math.h<td>double log(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l201">p</a> <td>logf<td>math.h<td>float logf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l202">p</a> <td>logl<td>math.h<td>long double logl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l204">p</a> <td>log10<td>math.h<td>double log10(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l205">p</a> <td>log10f<td>math.h<td>float log10f(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l206">p</a> <td>log10l<td>math.h<td>long double log10l(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l208">p</a> <td>log1p<td>math.h<td>double log1p(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l209">p</a> <td>log1pf<td>math.h<td>float log1pf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l210">p</a> <td>log1pl<td>math.h<td>long double log1pl(long double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l212">p</a> <td>log2<td>math.h<td>double log2(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l213">p</a> <td>log2f<td>math.h<td>float log2f(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l214">p</a> <td>log2l<td>math.h<td>long double log2l(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l216">p</a> <td>logb<td>math.h<td>double logb(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l217">p</a> <td>logbf<td>math.h<td>float logbf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l218">p</a> <td>logbl<td>math.h<td>long double logbl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l228">p</a> <td>modf<td>math.h<td>double modf(double value, double *iptr);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l229">p</a> <td>modff<td>math.h<td>float modff(float value, float *iptr);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l230">p</a> <td>modfl<td>math.h<td>long double modfl(long double value, long double *iptr);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l272">p</a> <td>scalbn<td>math.h<td>double scalbn(double x, int n);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l273">p</a> <td>scalbnf<td>math.h<td>float scalbnf(float x, int n);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l274">p</a> <td>scalbnl<td>math.h<td>long double scalbnl(long double x, int n);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l268">p</a> <td>scalbln<td>math.h<td>double scalbln(double x, long int n);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l269">p</a> <td>scalblnf<td>math.h<td>float scalblnf(float x, long int n);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l270">p</a> <td>scalblnl<td>math.h<td>long double scalblnl(long double x, long int n);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l104">p</a> <td>cbrt<td>math.h<td>double cbrt(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l105">p</a> <td>cbrtf<td>math.h<td>float cbrtf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l106">p</a> <td>cbrtl<td>math.h<td>long double cbrtl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l144">p</a> <td>fabs<td>math.h<td>double fabs(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l145">p</a> <td>fabsf<td>math.h<td>float fabsf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l146">p</a> <td>fabsl<td>math.h<td>long double fabsl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l176">p</a> <td>hypot<td>math.h<td>double hypot(double x, double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l177">p</a> <td>hypotf<td>math.h<td>float hypotf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l178">p</a> <td>hypotl<td>math.h<td>long double hypotl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l248">p</a> <td>pow<td>math.h<td>double pow(double x, double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l249">p</a> <td>powf<td>math.h<td>float powf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l250">p</a> <td>powl<td>math.h<td>long double powl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l284">p</a> <td>sqrt<td>math.h<td>double sqrt(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l285">p</a> <td>sqrtf<td>math.h<td>float sqrtf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l286">p</a> <td>sqrtl<td>math.h<td>long double sqrtl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l124">p</a> <td>erf<td>math.h<td>double erf(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l125">p</a> <td>erff<td>math.h<td>float erff(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l126">p</a> <td>erfl<td>math.h<td>long double erfl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l128">p</a> <td>erfc<td>math.h<td>double erfc(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l129">p</a> <td>erfcf<td>math.h<td>float erfcf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l130">p</a> <td>erfcl<td>math.h<td>long double erfcl(long double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l188">p</a> <td>lgamma<td>math.h<td>double lgamma(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l189">p</a> <td>lgammaf<td>math.h<td>float lgammaf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l190">p</a> <td>lgammal<td>math.h<td>long double lgammal(long double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l296">p</a> <td>tgamma<td>math.h<td>double tgamma(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l297">p</a> <td>tgammaf<td>math.h<td>float tgammaf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l298">p</a> <td>tgammal<td>math.h<td>long double tgammal(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l108">p</a> <td>ceil<td>math.h<td>double ceil(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l109">p</a> <td>ceilf<td>math.h<td>float ceilf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l110">p</a> <td>ceill<td>math.h<td>long double ceill(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l152">p</a> <td>floor<td>math.h<td>double floor(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l153">p</a> <td>floorf<td>math.h<td>float floorf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l154">p</a> <td>floorl<td>math.h<td>long double floorl(long double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l236">p</a> <td>nearbyint<td>math.h<td>double nearbyint(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l237">p</a> <td>nearbyintf<td>math.h<td>float nearbyintf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l238">p</a> <td>nearbyintl<td>math.h<td>long double nearbyintl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l260">p</a> <td>rint<td>math.h<td>double rint(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l261">p</a> <td>rintf<td>math.h<td>float rintf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l262">p</a> <td>rintl<td>math.h<td>long double rintl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l220">p</a> <td>lrint<td>math.h<td>long int lrint(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l221">p</a> <td>lrintf<td>math.h<td>long int lrintf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l222">p</a> <td>lrintl<td>math.h<td>long int lrintl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l192">p</a> <td>llrint<td>math.h<td>long long int llrint(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l193">p</a> <td>llrintf<td>math.h<td>long long int llrintf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l194">p</a> <td>llrintl<td>math.h<td>long long int llrintl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l264">p</a> <td>round<td>math.h<td>double round(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l265">p</a> <td>roundf<td>math.h<td>float roundf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l266">p</a> <td>roundl<td>math.h<td>long double roundl(long double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l224">p</a> <td>lround<td>math.h<td>long int lround(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l225">p</a> <td>lroundf<td>math.h<td>long int lroundf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l226">p</a> <td>lroundl<td>math.h<td>long int lroundl(long double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l196">p</a> <td>llround<td>math.h<td>long long int llround(double x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l197">p</a> <td>llroundf<td>math.h<td>long long int llroundf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l198">p</a> <td>llroundl<td>math.h<td>long long int llroundl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l300">p</a> <td>trunc<td>math.h<td>double trunc(double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l301">p</a> <td>truncf<td>math.h<td>float truncf(float x);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l302">p</a> <td>truncl<td>math.h<td>long double truncl(long double x);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l168">p</a> <td>fmod<td>math.h<td>double fmod(double x, double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l169">p</a> <td>fmodf<td>math.h<td>float fmodf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l170">p</a> <td>fmodl<td>math.h<td>long double fmodl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l252">p</a> <td>remainder<td>math.h<td>double remainder(double x, double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l253">p</a> <td>remainderf<td>math.h<td>float remainderf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l254">p</a> <td>remainderl<td>math.h<td>long double remainderl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l256">p</a> <td>remquo<td>math.h<td>double remquo(double x, double y, int *quo);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l257">p</a> <td>remquof<td>math.h<td>float remquof(float x, float y, int *quo);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l258">p</a> <td>remquol<td>math.h<td>long double remquol(long double x, long double y, int *quo);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l112">p</a> <td>copysign<td>math.h<td>double copysign(double x, double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l113">p</a> <td>copysignf<td>math.h<td>float copysignf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l114">p</a> <td>copysignl<td>math.h<td>long double copysignl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l232">p</a> <td>nan<td>math.h<td>double nan(const char *tagp);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l233">p</a> <td>nanf<td>math.h<td>float nanf(const char *tagp);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l234">p</a> <td>nanl<td>math.h<td>long double nanl(const char *tagp);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l240">p</a> <td>nextafter<td>math.h<td>double nextafter(double x, double y);<td>B.11 Mathematics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l241">p</a> <td>nextafterf<td>math.h<td>float nextafterf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l242">p</a> <td>nextafterl<td>math.h<td>long double nextafterl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l244">p</a> <td>nexttoward<td>math.h<td>double nexttoward(double x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l245">p</a> <td>nexttowardf<td>math.h<td>float nexttowardf(float x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l246">p</a> <td>nexttowardl<td>math.h<td>long double nexttowardl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l148">p</a> <td>fdim<td>math.h<td>double fdim(double x, double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l149">p</a> <td>fdimf<td>math.h<td>float fdimf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l150">p</a> <td>fdiml<td>math.h<td>long double fdiml(long double x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l160">p</a> <td>fmax<td>math.h<td>double fmax(double x, double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l161">p</a> <td>fmaxf<td>math.h<td>float fmaxf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l162">p</a> <td>fmaxl<td>math.h<td>long double fmaxl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l164">p</a> <td>fmin<td>math.h<td>double fmin(double x, double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l165">p</a> <td>fminf<td>math.h<td>float fminf(float x, float y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l166">p</a> <td>fminl<td>math.h<td>long double fminl(long double x, long double y);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l156">p</a> <td>fma<td>math.h<td>double fma(double x, double y, double z);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l157">p</a> <td>fmaf<td>math.h<td>float fmaf(float x, float y, float z);<td>B.11 Mathematics
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l158">p</a> <td>fmal<td>math.h<td>long double fmal(long double x, long double y, long double z);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l74">d</a> <td>isgreater<td>math.h<td>int isgreater(real-floating x, real-floating y);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l73">d</a> <td>isgreaterequal<td>math.h<td>int isgreaterequal(real-floating x, real-floating y);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l70">d</a> <td>isless<td>math.h<td>int isless(real-floating x, real-floating y);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l71">d</a> <td>islessequal<td>math.h<td>int islessequal(real-floating x, real-floating y);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l72">d</a> <td>islessgreater<td>math.h<td>int islessgreater(real-floating x, real-floating y);<td>B.11 Mathematics
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l54">d</a> <td>isunordered<td>math.h<td>int isunordered(real-floating x, real-floating y);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l47">d</a> <td>fpclassify<td>math.h<td>int fpclassify(real-floating x);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l67">d</a> <td>isfinite<td>math.h<td>int isfinite(real-floating x);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l52">d</a> <td>isinf<td>math.h<td>int isinf(real-floating x);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l57">d</a> <td>isnan<td>math.h<td>int isnan(real-floating x);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l62">d</a> <td>isnormal<td>math.h<td>int isnormal(real-floating x);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l76">d</a> <td>signbit<td>math.h<td>int signbit(real-floating x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l102">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l126">d</a> <td>acos<td>math.h<td>double acos(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l103">p</a> <td>acosf<td>math.h<td>float acosf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l104">p</a> <td>acosl<td>math.h<td>long double acosl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l110">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l128">d</a> <td>asin<td>math.h<td>double asin(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l111">p</a> <td>asinf<td>math.h<td>float asinf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l112">p</a> <td>asinl<td>math.h<td>long double asinl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l118">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l130">d</a> <td>atan<td>math.h<td>double atan(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l119">p</a> <td>atanf<td>math.h<td>float atanf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l120">p</a> <td>atanl<td>math.h<td>long double atanl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l122">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l131">d</a> <td>atan2<td>math.h<td>double atan2(double y, double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l123">p</a> <td>atan2f<td>math.h<td>float atan2f(float y, float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l124">p</a> <td>atan2l<td>math.h<td>long double atan2l(long double y, long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l142">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l139">d</a> <td>cos<td>math.h<td>double cos(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l143">p</a> <td>cosf<td>math.h<td>float cosf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l144">p</a> <td>cosl<td>math.h<td>long double cosl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l302">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l179">d</a> <td>sin<td>math.h<td>double sin(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l303">p</a> <td>sinf<td>math.h<td>float sinf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l304">p</a> <td>sinl<td>math.h<td>long double sinl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l314">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l182">d</a> <td>tan<td>math.h<td>double tan(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l315">p</a> <td>tanf<td>math.h<td>float tanf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l316">p</a> <td>tanl<td>math.h<td>long double tanl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l106">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l127">d</a> <td>acosh<td>math.h<td>double acosh(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l107">p</a> <td>acoshf<td>math.h<td>float acoshf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l108">p</a> <td>acoshl<td>math.h<td>long double acoshl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l114">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l129">d</a> <td>asinh<td>math.h<td>double asinh(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l115">p</a> <td>asinhf<td>math.h<td>float asinhf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l116">p</a> <td>asinhl<td>math.h<td>long double asinhl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l126">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l132">d</a> <td>atanh<td>math.h<td>double atanh(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l127">p</a> <td>atanhf<td>math.h<td>float atanhf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l128">p</a> <td>atanhl<td>math.h<td>long double atanhl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l146">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l140">d</a> <td>cosh<td>math.h<td>double cosh(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l147">p</a> <td>coshf<td>math.h<td>float coshf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l148">p</a> <td>coshl<td>math.h<td>long double coshl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l306">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l180">d</a> <td>sinh<td>math.h<td>double sinh(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l307">p</a> <td>sinhf<td>math.h<td>float sinhf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l308">p</a> <td>sinhl<td>math.h<td>long double sinhl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l318">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l183">d</a> <td>tanh<td>math.h<td>double tanh(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l319">p</a> <td>tanhf<td>math.h<td>float tanhf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l320">p</a> <td>tanhl<td>math.h<td>long double tanhl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l158">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l145">d</a> <td>exp<td>math.h<td>double exp(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l159">p</a> <td>expf<td>math.h<td>float expf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l160">p</a> <td>expl<td>math.h<td>long double expl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l162">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l146">d</a> <td>exp2<td>math.h<td>double exp2(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l163">p</a> <td>exp2f<td>math.h<td>float exp2f(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l164">p</a> <td>exp2l<td>math.h<td>long double exp2l(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l166">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l147">d</a> <td>expm1<td>math.h<td>double expm1(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l167">p</a> <td>expm1f<td>math.h<td>float expm1f(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l168">p</a> <td>expm1l<td>math.h<td>long double expm1l(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l198">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l155">d</a> <td>frexp<td>math.h<td>double frexp(double value, int *exp);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l199">p</a> <td>frexpf<td>math.h<td>float frexpf(float value, int *exp);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l200">p</a> <td>frexpl<td>math.h<td>long double frexpl(long double value, int *exp);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l206">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l157">d</a> <td>ilogb<td>math.h<td>int ilogb(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l207">p</a> <td>ilogbf<td>math.h<td>int ilogbf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l208">p</a> <td>ilogbl<td>math.h<td>int ilogbl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l210">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l158">d</a> <td>ldexp<td>math.h<td>double ldexp(double x, int exp);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l211">p</a> <td>ldexpf<td>math.h<td>float ldexpf(float x, int exp);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l212">p</a> <td>ldexpl<td>math.h<td>long double ldexpl(long double x, int exp);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l226">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l162">d</a> <td>log<td>math.h<td>double log(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l227">p</a> <td>logf<td>math.h<td>float logf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l228">p</a> <td>logl<td>math.h<td>long double logl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l230">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l163">d</a> <td>log10<td>math.h<td>double log10(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l231">p</a> <td>log10f<td>math.h<td>float log10f(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l232">p</a> <td>log10l<td>math.h<td>long double log10l(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l234">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l164">d</a> <td>log1p<td>math.h<td>double log1p(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l235">p</a> <td>log1pf<td>math.h<td>float log1pf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l236">p</a> <td>log1pl<td>math.h<td>long double log1pl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l238">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l165">d</a> <td>log2<td>math.h<td>double log2(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l239">p</a> <td>log2f<td>math.h<td>float log2f(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l240">p</a> <td>log2l<td>math.h<td>long double log2l(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l242">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l166">d</a> <td>logb<td>math.h<td>double logb(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l243">p</a> <td>logbf<td>math.h<td>float logbf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l244">p</a> <td>logbl<td>math.h<td>long double logbl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l254">p</a> <td>modf<td>math.h<td>double modf(double value, double *iptr);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l255">p</a> <td>modff<td>math.h<td>float modff(float value, float *iptr);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l256">p</a> <td>modfl<td>math.h<td>long double modfl(long double value, long double *iptr);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l298">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l178">d</a> <td>scalbn<td>math.h<td>double scalbn(double x, int n);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l299">p</a> <td>scalbnf<td>math.h<td>float scalbnf(float x, int n);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l300">p</a> <td>scalbnl<td>math.h<td>long double scalbnl(long double x, int n);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l294">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l177">d</a> <td>scalbln<td>math.h<td>double scalbln(double x, long int n);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l295">p</a> <td>scalblnf<td>math.h<td>float scalblnf(float x, long int n);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l296">p</a> <td>scalblnl<td>math.h<td>long double scalblnl(long double x, long int n);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l130">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l134">d</a> <td>cbrt<td>math.h<td>double cbrt(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l131">p</a> <td>cbrtf<td>math.h<td>float cbrtf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l132">p</a> <td>cbrtl<td>math.h<td>long double cbrtl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l170">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l148">d</a> <td>fabs<td>math.h<td>double fabs(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l171">p</a> <td>fabsf<td>math.h<td>float fabsf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l172">p</a> <td>fabsl<td>math.h<td>long double fabsl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l202">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l156">d</a> <td>hypot<td>math.h<td>double hypot(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l203">p</a> <td>hypotf<td>math.h<td>float hypotf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l204">p</a> <td>hypotl<td>math.h<td>long double hypotl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l274">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l172">d</a> <td>pow<td>math.h<td>double pow(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l275">p</a> <td>powf<td>math.h<td>float powf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l276">p</a> <td>powl<td>math.h<td>long double powl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l310">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l181">d</a> <td>sqrt<td>math.h<td>double sqrt(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l311">p</a> <td>sqrtf<td>math.h<td>float sqrtf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l312">p</a> <td>sqrtl<td>math.h<td>long double sqrtl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l150">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l143">d</a> <td>erf<td>math.h<td>double erf(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l151">p</a> <td>erff<td>math.h<td>float erff(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l152">p</a> <td>erfl<td>math.h<td>long double erfl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l154">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l144">d</a> <td>erfc<td>math.h<td>double erfc(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l155">p</a> <td>erfcf<td>math.h<td>float erfcf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l156">p</a> <td>erfcl<td>math.h<td>long double erfcl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l214">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l159">d</a> <td>lgamma<td>math.h<td>double lgamma(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l215">p</a> <td>lgammaf<td>math.h<td>float lgammaf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l216">p</a> <td>lgammal<td>math.h<td>long double lgammal(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l322">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l184">d</a> <td>tgamma<td>math.h<td>double tgamma(double x);<td>B.11 Mathematics
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l323">p</a> <td>tgammaf<td>math.h<td>float tgammaf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l324">p</a> <td>tgammal<td>math.h<td>long double tgammal(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l134">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l135">d</a> <td>ceil<td>math.h<td>double ceil(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l135">p</a> <td>ceilf<td>math.h<td>float ceilf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l136">p</a> <td>ceill<td>math.h<td>long double ceill(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l178">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l150">d</a> <td>floor<td>math.h<td>double floor(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l179">p</a> <td>floorf<td>math.h<td>float floorf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l180">p</a> <td>floorl<td>math.h<td>long double floorl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l262">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l169">d</a> <td>nearbyint<td>math.h<td>double nearbyint(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l263">p</a> <td>nearbyintf<td>math.h<td>float nearbyintf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l264">p</a> <td>nearbyintl<td>math.h<td>long double nearbyintl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l286">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l175">d</a> <td>rint<td>math.h<td>double rint(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l287">p</a> <td>rintf<td>math.h<td>float rintf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l288">p</a> <td>rintl<td>math.h<td>long double rintl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l246">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l167">d</a> <td>lrint<td>math.h<td>long int lrint(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l247">p</a> <td>lrintf<td>math.h<td>long int lrintf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l248">p</a> <td>lrintl<td>math.h<td>long int lrintl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l218">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l160">d</a> <td>llrint<td>math.h<td>long long int llrint(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l219">p</a> <td>llrintf<td>math.h<td>long long int llrintf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l220">p</a> <td>llrintl<td>math.h<td>long long int llrintl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l290">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l176">d</a> <td>round<td>math.h<td>double round(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l291">p</a> <td>roundf<td>math.h<td>float roundf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l292">p</a> <td>roundl<td>math.h<td>long double roundl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l250">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l168">d</a> <td>lround<td>math.h<td>long int lround(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l251">p</a> <td>lroundf<td>math.h<td>long int lroundf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l252">p</a> <td>lroundl<td>math.h<td>long int lroundl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l222">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l161">d</a> <td>llround<td>math.h<td>long long int llround(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l223">p</a> <td>llroundf<td>math.h<td>long long int llroundf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l224">p</a> <td>llroundl<td>math.h<td>long long int llroundl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l326">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l185">d</a> <td>trunc<td>math.h<td>double trunc(double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l327">p</a> <td>truncf<td>math.h<td>float truncf(float x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l328">p</a> <td>truncl<td>math.h<td>long double truncl(long double x);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l194">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l154">d</a> <td>fmod<td>math.h<td>double fmod(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l195">p</a> <td>fmodf<td>math.h<td>float fmodf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l196">p</a> <td>fmodl<td>math.h<td>long double fmodl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l278">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l173">d</a> <td>remainder<td>math.h<td>double remainder(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l279">p</a> <td>remainderf<td>math.h<td>float remainderf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l280">p</a> <td>remainderl<td>math.h<td>long double remainderl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l282">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l174">d</a> <td>remquo<td>math.h<td>double remquo(double x, double y, int *quo);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l283">p</a> <td>remquof<td>math.h<td>float remquof(float x, float y, int *quo);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l284">p</a> <td>remquol<td>math.h<td>long double remquol(long double x, long double y, int *quo);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l138">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l138">d</a> <td>copysign<td>math.h<td>double copysign(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l139">p</a> <td>copysignf<td>math.h<td>float copysignf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l140">p</a> <td>copysignl<td>math.h<td>long double copysignl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l258">p</a> <td>nan<td>math.h<td>double nan(const char *tagp);<td>B.11 Mathematics
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l259">p</a> <td>nanf<td>math.h<td>float nanf(const char *tagp);<td>B.11 Mathematics
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l260">p</a> <td>nanl<td>math.h<td>long double nanl(const char *tagp);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l266">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l170">d</a> <td>nextafter<td>math.h<td>double nextafter(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l267">p</a> <td>nextafterf<td>math.h<td>float nextafterf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l268">p</a> <td>nextafterl<td>math.h<td>long double nextafterl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l270">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l171">d</a> <td>nexttoward<td>math.h<td>double nexttoward(double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l271">p</a> <td>nexttowardf<td>math.h<td>float nexttowardf(float x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l272">p</a> <td>nexttowardl<td>math.h<td>long double nexttowardl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l174">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l149">d</a> <td>fdim<td>math.h<td>double fdim(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l175">p</a> <td>fdimf<td>math.h<td>float fdimf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l176">p</a> <td>fdiml<td>math.h<td>long double fdiml(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l186">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l152">d</a> <td>fmax<td>math.h<td>double fmax(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l187">p</a> <td>fmaxf<td>math.h<td>float fmaxf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l188">p</a> <td>fmaxl<td>math.h<td>long double fmaxl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l190">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l153">d</a> <td>fmin<td>math.h<td>double fmin(double x, double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l191">p</a> <td>fminf<td>math.h<td>float fminf(float x, float y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l192">p</a> <td>fminl<td>math.h<td>long double fminl(long double x, long double y);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l182">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l151">d</a> <td>fma<td>math.h<td>double fma(double x, double y, double z);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l183">p</a> <td>fmaf<td>math.h<td>float fmaf(float x, float y, float z);<td>B.11 Mathematics
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l184">p</a> <td>fmal<td>math.h<td>long double fmal(long double x, long double y, long double z);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l100">d</a> <td>isgreater<td>math.h<td>int isgreater(real-floating x, real-floating y);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l99">d</a> <td>isgreaterequal<td>math.h<td>int isgreaterequal(real-floating x, real-floating y);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l96">d</a> <td>isless<td>math.h<td>int isless(real-floating x, real-floating y);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l97">d</a> <td>islessequal<td>math.h<td>int islessequal(real-floating x, real-floating y);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l98">d</a> <td>islessgreater<td>math.h<td>int islessgreater(real-floating x, real-floating y);<td>B.11 Mathematics
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l81">d</a> <td>isunordered<td>math.h<td>int isunordered(real-floating x, real-floating y);<td>B.11 Mathematics
 <tr><td>&#160;<td>&#160;<td>t <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l15">d</a> <td>jmp_buf<td>setjmp.h<td>&#160;<td>B.12 Nonlocal jumps
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l31">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l28">p</a> <td>setjmp<td>setjmp.h<td>int setjmp(jmp_buf env);<td>B.12 Nonlocal jumps
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l32">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l29">p</a> <td>longjmp<td>setjmp.h<td>void longjmp(jmp_buf env, int val);<td>B.12 Nonlocal jumps
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/string.h#l25">p</a> <td>memset<td>string.h<td>void *memset(void *s, int c, size_t n);<td>B.20 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/string.h#l52">p</a> <td>strerror<td>string.h<td>char *strerror(int errnum);<td>B.20 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/string.h#l50">p</a> <td>strlen<td>string.h<td>size_t strlen(const char *s);<td>B.20 String handling
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l76">p</a> <td>acos<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l284">p</a> <td>sqrt<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l168">p</a> <td>fmod<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l240">p</a> <td>nextafter<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l84">p</a> <td>asin<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l144">p</a> <td>fabs<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l172">p</a> <td>frexp<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l244">p</a> <td>nexttoward<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l92">p</a> <td>atan<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l96">p</a> <td>atan2<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l176">p</a> <td>hypot<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l252">p</a> <td>remainder<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l80">p</a> <td>acosh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l104">p</a> <td>cbrt<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l180">p</a> <td>ilogb<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l256">p</a> <td>remquo<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l88">p</a> <td>asinh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l108">p</a> <td>ceil<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l184">p</a> <td>ldexp<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l260">p</a> <td>rint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l100">p</a> <td>atanh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l112">p</a> <td>copysign<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l188">p</a> <td>lgamma<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l264">p</a> <td>round<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l116">p</a> <td>cos<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l124">p</a> <td>erf<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l192">p</a> <td>llrint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l272">p</a> <td>scalbn<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l276">p</a> <td>sin<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l128">p</a> <td>erfc<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l196">p</a> <td>llround<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l268">p</a> <td>scalbln<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l288">p</a> <td>tan<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l136">p</a> <td>exp2<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l204">p</a> <td>log10<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l296">p</a> <td>tgamma<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l120">p</a> <td>cosh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l140">p</a> <td>expm1<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l208">p</a> <td>log1p<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l300">p</a> <td>trunc<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l280">p</a> <td>sinh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l148">p</a> <td>fdim<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l212">p</a> <td>log2<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>missing<td>&#160;<td>&#160;<td>carg<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l292">p</a> <td>tanh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l152">p</a> <td>floor<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l216">p</a> <td>logb<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>missing<td>&#160;<td>&#160;<td>cimag<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l132">p</a> <td>exp<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l156">p</a> <td>fma<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l220">p</a> <td>lrint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>missing<td>&#160;<td>&#160;<td>conj<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l200">p</a> <td>log<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l160">p</a> <td>fmax<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l224">p</a> <td>lround<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>missing<td>&#160;<td>&#160;<td>cproj<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l248">p</a> <td>pow<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l164">p</a> <td>fmin<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l236">p</a> <td>nearbyint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
-<tr><td>missing<td>&#160;<td>&#160;<td>creal<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l102">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l126">d</a> <td>acos<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l310">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l181">d</a> <td>sqrt<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l194">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l154">d</a> <td>fmod<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l266">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l170">d</a> <td>nextafter<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l110">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l128">d</a> <td>asin<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l170">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l148">d</a> <td>fabs<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l198">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l155">d</a> <td>frexp<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l270">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l171">d</a> <td>nexttoward<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l118">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l130">d</a> <td>atan<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l122">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l131">d</a> <td>atan2<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l202">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l156">d</a> <td>hypot<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l278">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l173">d</a> <td>remainder<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l106">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l127">d</a> <td>acosh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l130">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l134">d</a> <td>cbrt<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l206">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l157">d</a> <td>ilogb<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l282">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l174">d</a> <td>remquo<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l114">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l129">d</a> <td>asinh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l134">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l135">d</a> <td>ceil<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l210">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l158">d</a> <td>ldexp<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l286">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l175">d</a> <td>rint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l126">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l132">d</a> <td>atanh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l138">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l138">d</a> <td>copysign<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l214">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l159">d</a> <td>lgamma<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l290">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l176">d</a> <td>round<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l142">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l139">d</a> <td>cos<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l150">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l143">d</a> <td>erf<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l218">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l160">d</a> <td>llrint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l298">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l178">d</a> <td>scalbn<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l302">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l179">d</a> <td>sin<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l154">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l144">d</a> <td>erfc<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l222">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l161">d</a> <td>llround<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l294">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l177">d</a> <td>scalbln<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l314">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l182">d</a> <td>tan<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l162">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l146">d</a> <td>exp2<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l230">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l163">d</a> <td>log10<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l322">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l184">d</a> <td>tgamma<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l146">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l140">d</a> <td>cosh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l166">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l147">d</a> <td>expm1<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l234">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l164">d</a> <td>log1p<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l326">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l185">d</a> <td>trunc<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l306">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l180">d</a> <td>sinh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l174">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l149">d</a> <td>fdim<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l238">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l165">d</a> <td>log2<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l80">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l133">d</a> <td>carg<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l318">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l183">d</a> <td>tanh<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l178">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l150">d</a> <td>floor<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l242">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l166">d</a> <td>logb<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l84">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l136">d</a> <td>cimag<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l158">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l145">d</a> <td>exp<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l182">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l151">d</a> <td>fma<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l246">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l167">d</a> <td>lrint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l88">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l137">d</a> <td>conj<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l226">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l162">d</a> <td>log<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l186">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l152">d</a> <td>fmax<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l250">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l168">d</a> <td>lround<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l92">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l141">d</a> <td>cproj<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l274">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l172">d</a> <td>pow<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l190">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l153">d</a> <td>fmin<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l262">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l169">d</a> <td>nearbyint<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l96">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l142">d</a> <td>creal<td>tgmath.h<td>&#160;<td>B.21 Type-generic math
 <tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/locale.h#l10">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/locale.h#l12">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/locale.h#l8">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stddef.h#l4">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stddef.h#l6">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stddef.h#l8">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l20">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l22">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l24">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l10">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l12">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l8">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/string.h#l10">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/string.h#l12">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/string.h#l8">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l10">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l12">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l8">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l19">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l21">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l23">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l27">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l29">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l31">d</a> <td>NULL<td>time.h<td>&#160;<td>B.22 Date and time
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>time.h<td>&#160;<td>B.22 Date and time
 <tr><td>&#160;<td>&#160;<td>t <td>time_t<td>time.h<td>&#160;<td>B.22 Date and time
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wctype.h#l37">p</a> <td>towctrans<td>wctype.h<td>wint_t towctrans(wint_t wc, wctrans_t desc);<td>B.24 Wide character classification and mapping utilities
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wctype.h#l40">p</a> <td>wctrans<td>wctype.h<td>wctrans_t wctrans(const char *property);<td>B.24 Wide character classification and mapping utilities
 </table>
-<h4>stats</h4><ul><li>missing: 85<li>nosym: 98<li>nodecl: 0</ul>
+<h4>stats</h4><ul><li>missing: 10<li>nosym: 7<li>nodecl: 0</ul>
index 9b0e874..5b81ee0 100644 (file)
@@ -1,5 +1,5 @@
 <h3>musl vs posix api</h3>
-<h4>commit</h4><p>commit <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=commit;h=405ce58dcf59ecfb3e245fed0b96b1f35fbeaec1">405ce58dcf59ecfb3e245fed0b96b1f35fbeaec1</a><br>Date:   Fri Mar 2 22:35:37 2012 -0500<br><br>    fix nan/infinity macros in math.h, etc.<br>    <br>    the previous version not only failed to work in c++, but also failed<br>    to produce constant expressions, making the macros useless as<br>    initializers for objects of static storage duration.<br>    <br>    gcc 3.3 and later have builtins for these, which sadly seem to be the<br>    most "portable" solution. the alternative definitions produce<br>    exceptions (for NAN) and compiler warnings (for INFINITY) on newer<br>    versions of gcc.
+<h4>commit</h4><p>commit <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=commit;h=b69f695acedd4ce2798ef9ea28d834ceccc789bd">b69f695acedd4ce2798ef9ea28d834ceccc789bd</a><br>Date:   Tue Mar 13 01:17:53 2012 -0400<br><br>    first commit of the new libm!<br>    <br>    thanks to the hard work of Szabolcs Nagy (nsz), identifying the best<br>    (from correctness and license standpoint) implementations from freebsd<br>    and openbsd and cleaning them up! musl should now fully support c99<br>    float and long double math functions, and has near-complete complex<br>    math support. tgmath should also work (fully on gcc-compatible<br>    compilers, and mostly on any c99 compiler).<br>    <br>    based largely on commit 0376d44a890fea261506f1fc63833e7a686dca19 from<br>    nsz's libm git repo, with some additions (dummy versions of a few<br>    missing long double complex functions, etc.) by me.<br>    <br>    various cleanups still need to be made, including re-adding (if<br>    they're correct) some asm functions that were dropped.
 <h4>legend</h4><ul><li>status: musl implementation status summary<ul><li>(empty) - implemented<li>nosym - prototype found in include files (see decl) but not in libc.a (see sym)<li>nodecl - symbol is in libc.a but not declared in a public header<li>missing - neither in include files (see decl) nor in libc.a (see sym)</ul><li>sym: external symbol kind as found by `nm libc.a` (symbol kind only reported once)<ul><li>C - symbol is common (uninitialized data)<li>D - symbol is in the initialized data section<li>R - symbol is in the read only data section<li>T - symbol is in the text section<li>V - weak object<li>W - weak symbol</ul><li>decl: kind of declaration as found by `ctags -R include` (every occurance is reported)<ul><li>d - macro definition<li>p - function prototype<li>x - external and forward variable declaration</ul></ul><p>(STREAMS and posix_trace* apis are excluded)
 <h4>table</h4><table border=1><tr><th colspan=3>musl<th colspan=4>posix<tr><th>status<th>sym<th>decl<th>name<th>header<th>option<th>desc
 <tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/select.h#l27">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/FD_CLR.html">FD_CLR</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_select.h.html">sys/select.h</a><td>&#160;<td>pselect, select - synchronous I/O multiplexing
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/abs.html">abs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>abs - return an integer absolute value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/socket.h#l239">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/accept.html">accept</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>accept - accept a new connection on a socket
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l70">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/access.html">access</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>access, faccessat - determine accessibility of a file relative to directory file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l76">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acos.html">acos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acos, acosf, acosl - arc cosine functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l77">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acosf.html">acosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acos, acosf, acosl - arc cosine functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acosh.html">acosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acosh, acoshf, acoshl - inverse hyperbolic cosine functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acoshf.html">acoshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acosh, acoshf, acoshl - inverse hyperbolic cosine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l82">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acoshl.html">acoshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acosh, acoshf, acoshl - inverse hyperbolic cosine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l78">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acosl.html">acosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acos, acosf, acosl - arc cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l102">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l126">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acos.html">acos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acos, acosf, acosl - arc cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l103">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acosf.html">acosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acos, acosf, acosl - arc cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l106">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l127">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acosh.html">acosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acosh, acoshf, acoshl - inverse hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l107">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acoshf.html">acoshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acosh, acoshf, acoshl - inverse hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acoshl.html">acoshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acosh, acoshf, acoshl - inverse hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/acosl.html">acosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>acos, acosf, acosl - arc cosine functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/aio.h#l48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_cancel.html">aio_cancel</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html">aio.h</a><td>&#160;<td>aio_cancel - cancel an asynchronous I/O request
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/aio.h#l46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_error.html">aio_error</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html">aio.h</a><td>&#160;<td>aio_error - retrieve errors status for an asynchronous I/O operation
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/aio.h#l50">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_fsync.html">aio_fsync</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html">aio.h</a><td>&#160;<td>aio_fsync - asynchronous file synchronization
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dirent.h#l36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/alphasort.html">alphasort</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>alphasort, scandir - scan a directory
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l53">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asctime.html">asctime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OB">OB</a><td>asctime, asctime_r - convert date and time to a string
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asctime_r.html">asctime_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>asctime, asctime_r - convert date and time to a string
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l84">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asin.html">asin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asin, asinf, asinl - arc sine function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l85">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinf.html">asinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asin, asinf, asinl - arc sine function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l88">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinh.html">asinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asinh, asinhf, asinhl - inverse hyperbolic sine functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l89">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinhf.html">asinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asinh, asinhf, asinhl - inverse hyperbolic sine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l90">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinhl.html">asinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asinh, asinhf, asinhl - inverse hyperbolic sine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinl.html">asinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asin, asinf, asinl - arc sine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l110">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l128">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asin.html">asin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asin, asinf, asinl - arc sine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l111">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinf.html">asinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asin, asinf, asinl - arc sine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l114">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l129">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinh.html">asinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asinh, asinhf, asinhl - inverse hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l115">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinhf.html">asinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asinh, asinhf, asinhl - inverse hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinhl.html">asinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asinh, asinhf, asinhl - inverse hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l112">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/asinl.html">asinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>asin, asinf, asinl - arc sine function
 <tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/assert.h#l1">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/assert.h#l4">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/assert.h#l6">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/assert.html">assert</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/assert.h.html">assert.h</a><td>&#160;<td>assert - insert program diagnostics
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l92">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan.html">atan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan, atanf, atanl - arc tangent function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l96">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan2.html">atan2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan2, atan2f, atan2l - arc tangent functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l97">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan2f.html">atan2f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan2, atan2f, atan2l - arc tangent functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan2l.html">atan2l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan2, atan2f, atan2l - arc tangent functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l93">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanf.html">atanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan, atanf, atanl - arc tangent function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l100">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanh.html">atanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atanh, atanhf, atanhl - inverse hyperbolic tangent functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l101">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanhf.html">atanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atanh, atanhf, atanhl - inverse hyperbolic tangent functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l102">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanhl.html">atanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atanh, atanhf, atanhl - inverse hyperbolic tangent functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l94">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanl.html">atanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan, atanf, atanl - arc tangent function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l118">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l130">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan.html">atan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan, atanf, atanl - arc tangent function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l122">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l131">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan2.html">atan2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan2, atan2f, atan2l - arc tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l123">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan2f.html">atan2f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan2, atan2f, atan2l - arc tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l124">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atan2l.html">atan2l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan2, atan2f, atan2l - arc tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l119">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanf.html">atanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan, atanf, atanl - arc tangent function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l126">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l132">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanh.html">atanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atanh, atanhf, atanhl - inverse hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l127">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanhf.html">atanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atanh, atanhf, atanhl - inverse hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l128">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanhl.html">atanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atanh, atanhf, atanhl - inverse hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atanl.html">atanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>atan, atanf, atanl - arc tangent function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atexit.html">atexit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>atexit - register a function to run at process termination
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atof.html">atof</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>atof - convert a string to a double-precision number
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l20">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atoi.html">atoi</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>atoi - convert a string to an integer
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/socket.h#l236">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/bind.html">bind</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>bind - bind a name to a socket
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/bsearch.html">bsearch</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>bsearch - binary search a sorted table
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/btowc.html">btowc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>btowc - single byte to wide character conversion
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cabs.html">cabs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cabs, cabsf, cabsl - return a complex absolute value
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cabsf.html">cabsf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cabs, cabsf, cabsl - return a complex absolute value
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cabsl.html">cabsl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cabs, cabsf, cabsl - return a complex absolute value
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacos.html">cacos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacos, cacosf, cacosl - complex arc cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacosf.html">cacosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacos, cacosf, cacosl - complex arc cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacosh.html">cacosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacoshf.html">cacoshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacoshl.html">cacoshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacosl.html">cacosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacos, cacosf, cacosl - complex arc cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l68">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cabs.html">cabs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cabs, cabsf, cabsl - return a complex absolute value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l69">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cabsf.html">cabsf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cabs, cabsf, cabsl - return a complex absolute value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l70">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cabsl.html">cabsl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cabs, cabsf, cabsl - return a complex absolute value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l12">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacos.html">cacos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacos, cacosf, cacosl - complex arc cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l13">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacosf.html">cacosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacos, cacosf, cacosl - complex arc cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacosh.html">cacosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacoshf.html">cacoshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacoshl.html">cacoshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l14">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cacosl.html">cacosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cacos, cacosf, cacosl - complex arc cosine functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/calloc.html">calloc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>calloc - a memory allocator
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/carg.html">carg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>carg, cargf, cargl - complex argument functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cargf.html">cargf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>carg, cargf, cargl - complex argument functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cargl.html">cargl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>carg, cargf, cargl - complex argument functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casin.html">casin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casin, casinf, casinl - complex arc sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinf.html">casinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casin, casinf, casinl - complex arc sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinh.html">casinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casinh, casinhf, casinhl - complex arc hyperbolic sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinhf.html">casinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casinh, casinhf, casinhl - complex arc hyperbolic sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinhl.html">casinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casinh, casinhf, casinhl - complex arc hyperbolic sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinl.html">casinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casin, casinf, casinl - complex arc sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catan.html">catan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catan, catanf, catanl - complex arc tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanf.html">catanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catan, catanf, catanl - complex arc tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanh.html">catanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanhf.html">catanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanhl.html">catanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanl.html">catanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catan, catanf, catanl - complex arc tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l80">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l133">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/carg.html">carg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>carg, cargf, cargl - complex argument functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cargf.html">cargf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>carg, cargf, cargl - complex argument functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l82">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cargl.html">cargl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>carg, cargf, cargl - complex argument functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casin.html">casin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casin, casinf, casinl - complex arc sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l17">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinf.html">casinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casin, casinf, casinl - complex arc sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l40">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinh.html">casinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casinh, casinhf, casinhl - complex arc hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l41">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinhf.html">casinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casinh, casinhf, casinhl - complex arc hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinhl.html">casinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casinh, casinhf, casinhl - complex arc hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/casinl.html">casinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>casin, casinf, casinl - complex arc sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l20">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catan.html">catan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catan, catanf, catanl - complex arc tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanf.html">catanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catan, catanf, catanl - complex arc tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l44">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanh.html">catanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l45">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanhf.html">catanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanhl.html">catanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l22">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catanl.html">catanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>catan, catanf, catanl - complex arc tangent functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/nl_types.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catclose.html">catclose</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/nl_types.h.html">nl_types.h</a><td>&#160;<td>catclose - close a message catalog descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/nl_types.h#l17">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catgets.html">catgets</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/nl_types.h.html">nl_types.h</a><td>&#160;<td>catgets - read a program message
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/nl_types.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/catopen.html">catopen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/nl_types.h.html">nl_types.h</a><td>&#160;<td>catopen - open a message catalog
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cbrt.html">cbrt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cbrt, cbrtf, cbrtl - cube root functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l105">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cbrtf.html">cbrtf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cbrt, cbrtf, cbrtl - cube root functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l106">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cbrtl.html">cbrtl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cbrt, cbrtf, cbrtl - cube root functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccos.html">ccos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccos, ccosf, ccosl - complex cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccosf.html">ccosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccos, ccosf, ccosl - complex cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccosh.html">ccosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccoshf.html">ccoshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccoshl.html">ccoshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccosl.html">ccosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccos, ccosf, ccosl - complex cosine functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ceil.html">ceil</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ceil, ceilf, ceill - ceiling value function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ceilf.html">ceilf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ceil, ceilf, ceill - ceiling value function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l110">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ceill.html">ceill</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ceil, ceilf, ceill - ceiling value function
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cexp.html">cexp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cexp, cexpf, cexpl - complex exponential functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cexpf.html">cexpf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cexp, cexpf, cexpl - complex exponential functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cexpl.html">cexpl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cexp, cexpf, cexpl - complex exponential functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l130">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l134">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cbrt.html">cbrt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cbrt, cbrtf, cbrtl - cube root functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l131">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cbrtf.html">cbrtf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cbrt, cbrtf, cbrtl - cube root functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l132">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cbrtl.html">cbrtl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cbrt, cbrtf, cbrtl - cube root functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccos.html">ccos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccos, ccosf, ccosl - complex cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l25">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccosf.html">ccosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccos, ccosf, ccosl - complex cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccosh.html">ccosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccoshf.html">ccoshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l50">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccoshl.html">ccoshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ccosl.html">ccosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ccos, ccosf, ccosl - complex cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l134">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l135">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ceil.html">ceil</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ceil, ceilf, ceill - ceiling value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l135">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ceilf.html">ceilf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ceil, ceilf, ceill - ceiling value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l136">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ceill.html">ceill</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ceil, ceilf, ceill - ceiling value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cexp.html">cexp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cexp, cexpf, cexpl - complex exponential functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l61">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cexpf.html">cexpf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cexp, cexpf, cexpl - complex exponential functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cexpl.html">cexpl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cexp, cexpf, cexpl - complex exponential functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/termios.h#l21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cfgetispeed.html">cfgetispeed</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>cfgetispeed - get input baud rate
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/termios.h#l20">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cfgetospeed.html">cfgetospeed</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>cfgetospeed - get output baud rate
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/termios.h#l23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cfsetispeed.html">cfsetispeed</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>cfsetispeed - set input baud rate
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/chdir.html">chdir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>chdir - change working directory
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/stat.h#l75">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/chmod.html">chmod</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>chmod, fchmodat - change mode of a file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/chown.html">chown</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>chown, fchownat - change owner and group of a file relative to directory file descriptor
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cimag.html">cimag</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cimag, cimagf, cimagl - complex imaginary functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cimagf.html">cimagf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cimag, cimagf, cimagl - complex imaginary functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cimagl.html">cimagl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cimag, cimagf, cimagl - complex imaginary functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l84">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l136">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cimag.html">cimag</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cimag, cimagf, cimagl - complex imaginary functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l85">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cimagf.html">cimagf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cimag, cimagf, cimagl - complex imaginary functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cimagl.html">cimagl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cimag, cimagf, cimagl - complex imaginary functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l70">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clearerr.html">clearerr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>clearerr - clear indicators on a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clock.html">clock</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td>&#160;<td>clock - report CPU time used
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l89">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clock_getcpuclockid.html">clock_getcpuclockid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CPT">CPT</a><td>clock_getcpuclockid - access a process CPU-time clock (<b>ADVANCED REALTIME</b>)
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clock_gettime.html">clock_gettime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>clock_getres, clock_gettime, clock_settime - clock and timer functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l88">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clock_nanosleep.html">clock_nanosleep</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>clock_nanosleep - high resolution sleep with specifiable clock
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l87">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clock_settime.html">clock_settime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>clock_getres, clock_gettime, clock_settime - clock and timer functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clog.html">clog</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>clog, clogf, clogl - complex natural logarithm functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clogf.html">clogf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>clog, clogf, clogl - complex natural logarithm functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clogl.html">clogl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>clog, clogf, clogl - complex natural logarithm functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l64">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clog.html">clog</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>clog, clogf, clogl - complex natural logarithm functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l65">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clogf.html">clogf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>clog, clogf, clogl - complex natural logarithm functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/clogl.html">clogl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>clog, clogf, clogl - complex natural logarithm functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html">close</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>close - close a file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dirent.h#l26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/closedir.html">closedir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>closedir - close a directory stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/syslog.h#l57">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/closelog.html">closelog</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/syslog.h.html">syslog.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>closelog, openlog, setlogmask, syslog - control system log
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l128">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/confstr.html">confstr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>confstr - get configurable variables
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/conj.html">conj</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>conj, conjf, conjl - complex conjugate functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/conjf.html">conjf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>conj, conjf, conjl - complex conjugate functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/conjl.html">conjl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>conj, conjf, conjl - complex conjugate functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l88">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l137">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/conj.html">conj</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>conj, conjf, conjl - complex conjugate functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l89">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/conjf.html">conjf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>conj, conjf, conjl - complex conjugate functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l90">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/conjl.html">conjl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>conj, conjf, conjl - complex conjugate functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/socket.h#l237">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/connect.html">connect</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>connect - connect a socket
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l112">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/copysign.html">copysign</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>copysign, copysignf, copysignl - number manipulation function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l113">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/copysignf.html">copysignf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>copysign, copysignf, copysignl - number manipulation function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/copysignl.html">copysignl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>copysign, copysignf, copysignl - number manipulation function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cos.html">cos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cos, cosf, cosl - cosine function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l117">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cosf.html">cosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cos, cosf, cosl - cosine function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cosh.html">cosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cosh, coshf, coshl - hyperbolic cosine functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l121">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/coshf.html">coshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cosh, coshf, coshl - hyperbolic cosine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l122">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/coshl.html">coshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cosh, coshf, coshl - hyperbolic cosine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l118">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cosl.html">cosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cos, cosf, cosl - cosine function
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cpow.html">cpow</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cpow, cpowf, cpowl - complex power functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cpowf.html">cpowf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cpow, cpowf, cpowl - complex power functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cpowl.html">cpowl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cpow, cpowf, cpowl - complex power functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cproj.html">cproj</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cproj, cprojf, cprojl - complex projection functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cprojf.html">cprojf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cproj, cprojf, cprojl - complex projection functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cprojl.html">cprojl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cproj, cprojf, cprojl - complex projection functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/creal.html">creal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>creal, crealf, creall - complex real functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/crealf.html">crealf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>creal, crealf, creall - complex real functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/creall.html">creall</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>creal, crealf, creall - complex real functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l138">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l138">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/copysign.html">copysign</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>copysign, copysignf, copysignl - number manipulation function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l139">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/copysignf.html">copysignf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>copysign, copysignf, copysignl - number manipulation function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l140">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/copysignl.html">copysignl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>copysign, copysignf, copysignl - number manipulation function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l142">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l139">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cos.html">cos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cos, cosf, cosl - cosine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l143">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cosf.html">cosf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cos, cosf, cosl - cosine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l146">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l140">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cosh.html">cosh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cosh, coshf, coshl - hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l147">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/coshf.html">coshf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cosh, coshf, coshl - hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l148">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/coshl.html">coshl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cosh, coshf, coshl - hyperbolic cosine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l144">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cosl.html">cosl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>cos, cosf, cosl - cosine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l72">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cpow.html">cpow</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cpow, cpowf, cpowl - complex power functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cpowf.html">cpowf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cpow, cpowf, cpowl - complex power functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cpowl.html">cpowl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cpow, cpowf, cpowl - complex power functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l92">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l141">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cproj.html">cproj</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cproj, cprojf, cprojl - complex projection functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l93">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cprojf.html">cprojf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cproj, cprojf, cprojl - complex projection functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l94">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cprojl.html">cprojl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>cproj, cprojf, cprojl - complex projection functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l96">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l142">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/creal.html">creal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>creal, crealf, creall - complex real functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l97">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/crealf.html">crealf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>creal, crealf, creall - complex real functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/creall.html">creall</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>creal, crealf, creall - complex real functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/fcntl.h#l25">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/creat.html">creat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fcntl.h.html">fcntl.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OH">OH</a><td>creat - create a new file or rewrite an existing one
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l138">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/crypt.html">crypt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>crypt - string encoding function (<b>CRYPT</b>)
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csin.html">csin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csin, csinf, csinl - complex sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinf.html">csinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csin, csinf, csinl - complex sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinh.html">csinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csinh, csinhf, csinhl - complex hyperbolic sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinhf.html">csinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csinh, csinhf, csinhl - complex hyperbolic sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinhl.html">csinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csinh, csinhf, csinhl - complex hyperbolic sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinl.html">csinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csin, csinf, csinl - complex sine functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csqrt.html">csqrt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csqrt, csqrtf, csqrtl - complex square root functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csqrtf.html">csqrtf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csqrt, csqrtf, csqrtl - complex square root functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csqrtl.html">csqrtl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csqrt, csqrtf, csqrtl - complex square root functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctan.html">ctan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctan, ctanf, ctanl - complex tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanf.html">ctanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctan, ctanf, ctanl - complex tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanh.html">ctanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanhf.html">ctanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanhl.html">ctanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanl.html">ctanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctan, ctanf, ctanl - complex tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csin.html">csin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csin, csinf, csinl - complex sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinf.html">csinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csin, csinf, csinl - complex sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinh.html">csinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csinh, csinhf, csinhl - complex hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l53">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinhf.html">csinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csinh, csinhf, csinhl - complex hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinhl.html">csinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csinh, csinhf, csinhl - complex hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csinl.html">csinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csin, csinf, csinl - complex sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l76">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csqrt.html">csqrt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csqrt, csqrtf, csqrtl - complex square root functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l77">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csqrtf.html">csqrtf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csqrt, csqrtf, csqrtl - complex square root functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l78">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/csqrtl.html">csqrtl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>csqrt, csqrtf, csqrtl - complex square root functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctan.html">ctan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctan, ctanf, ctanl - complex tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanf.html">ctanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctan, ctanf, ctanl - complex tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanh.html">ctanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l57">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanhf.html">ctanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l58">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanhl.html">ctanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/complex.h#l34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctanl.html">ctanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/complex.h.html">complex.h</a><td>&#160;<td>ctan, ctanf, ctanl - complex tangent functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l144">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l119">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctermid.html">ctermid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>ctermid - generate a pathname for the controlling terminal
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctime.html">ctime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OB">OB</a><td>ctime, ctime_r - convert a time value to a date and time string
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l67">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ctime_r.html">ctime_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>ctime, ctime_r - convert a time value to a date and time string
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/utmpx.h#l34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endutxent.html">endutxent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/utmpx.h.html">utmpx.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions
 <tr><td>nodecl<td>V<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/environ.html">environ</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erand48.html">erand48</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l124">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erf.html">erf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erf, erff, erfl - error functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l128">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfc.html">erfc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erfc, erfcf, erfcl - complementary error functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l129">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfcf.html">erfcf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erfc, erfcf, erfcl - complementary error functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l130">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfcl.html">erfcl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erfc, erfcf, erfcl - complementary error functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l125">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erff.html">erff</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erf, erff, erfl - error functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l126">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfl.html">erfl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erf, erff, erfl - error functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l150">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l143">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erf.html">erf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erf, erff, erfl - error functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l154">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l144">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfc.html">erfc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erfc, erfcf, erfcl - complementary error functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l155">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfcf.html">erfcf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erfc, erfcf, erfcl - complementary error functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l156">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfcl.html">erfcl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erfc, erfcf, erfcl - complementary error functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l151">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erff.html">erff</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erf, erff, erfl - error functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l152">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/erfl.html">erfl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>erf, erff, erfl - error functions
 <tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/errno.h#l14">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/errno.html">errno</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html">errno.h</a><td>&#160;<td>errno - error return value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l85">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execl.html">execl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l84">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execle.html">execle</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l82">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execve.html">execve</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execvp.html">execvp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l44">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exit.html">exit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>exit - terminate a process
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l132">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp.html">exp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp, expf, expl - exponential function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l136">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp2.html">exp2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp2, exp2f, exp2l - exponential base 2 functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l137">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp2f.html">exp2f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp2, exp2f, exp2l - exponential base 2 functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l138">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp2l.html">exp2l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp2, exp2f, exp2l - exponential base 2 functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l133">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expf.html">expf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp, expf, expl - exponential function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l134">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expl.html">expl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp, expf, expl - exponential function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l140">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expm1.html">expm1</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>expm1, expm1f, expm1l - compute exponential functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l141">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expm1f.html">expm1f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>expm1, expm1f, expm1l - compute exponential functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l142">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expm1l.html">expm1l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>expm1, expm1f, expm1l - compute exponential functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l144">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fabs.html">fabs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fabs, fabsf, fabsl - absolute value function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l145">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fabsf.html">fabsf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fabs, fabsf, fabsl - absolute value function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l146">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fabsl.html">fabsl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fabs, fabsf, fabsl - absolute value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l158">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l145">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp.html">exp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp, expf, expl - exponential function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l162">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l146">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp2.html">exp2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp2, exp2f, exp2l - exponential base 2 functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l163">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp2f.html">exp2f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp2, exp2f, exp2l - exponential base 2 functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l164">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/exp2l.html">exp2l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp2, exp2f, exp2l - exponential base 2 functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l159">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expf.html">expf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp, expf, expl - exponential function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l160">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expl.html">expl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>exp, expf, expl - exponential function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l166">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l147">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expm1.html">expm1</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>expm1, expm1f, expm1l - compute exponential functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l167">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expm1f.html">expm1f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>expm1, expm1f, expm1l - compute exponential functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l168">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/expm1l.html">expm1l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>expm1, expm1f, expm1l - compute exponential functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l170">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l148">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fabs.html">fabs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fabs, fabsf, fabsl - absolute value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l171">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fabsf.html">fabsf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fabs, fabsf, fabsl - absolute value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l172">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fabsl.html">fabsl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fabs, fabsf, fabsl - absolute value function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l71">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/faccessat.html">faccessat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>access, faccessat - determine accessibility of a file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchdir.html">fchdir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>fchdir - change working directory
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/stat.h#l76">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchmod.html">fchmod</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>fchmod - change mode of a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fclose.html">fclose</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fclose - close a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/fcntl.h#l26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fcntl.html">fcntl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fcntl.h.html">fcntl.h</a><td>&#160;<td>fcntl - file control
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html">fdatasync</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#SIO">SIO</a><td>fdatasync - synchronize the data of a file (<b>REALTIME</b>)
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l148">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdim.html">fdim</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l149">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdimf.html">fdimf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l150">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdiml.html">fdiml</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l174">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l149">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdim.html">fdim</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l175">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdimf.html">fdimf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l176">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdiml.html">fdiml</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l126">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdopen.html">fdopen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>fdopen - associate a stream with a file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dirent.h#l27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdopendir.html">fdopendir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>fdopendir, opendir - open directory associated with file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/fenv.h#l10">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/feclearexcept.html">feclearexcept</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fenv.h.html">fenv.h</a><td>&#160;<td>feclearexcept - clear floating-point exception
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l125">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fgetws.html">fgetws</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>fgetws - get a wide-character string from a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l129">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fileno.html">fileno</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>fileno - map a stream pointer to a file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l134">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/flockfile.html">flockfile</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>flockfile, ftrylockfile, funlockfile - stdio locking functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l152">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/floor.html">floor</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>floor, floorf, floorl - floor function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l153">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/floorf.html">floorf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>floor, floorf, floorl - floor function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l154">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/floorl.html">floorl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>floor, floorf, floorl - floor function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l156">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fma.html">fma</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fma, fmaf, fmal - floating-point multiply-add
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l157">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmaf.html">fmaf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fma, fmaf, fmal - floating-point multiply-add
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l158">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmal.html">fmal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fma, fmaf, fmal - floating-point multiply-add
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l160">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmax.html">fmax</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l161">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmaxf.html">fmaxf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l162">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmaxl.html">fmaxl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l178">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l150">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/floor.html">floor</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>floor, floorf, floorl - floor function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l179">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/floorf.html">floorf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>floor, floorf, floorl - floor function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l180">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/floorl.html">floorl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>floor, floorf, floorl - floor function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l182">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l151">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fma.html">fma</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fma, fmaf, fmal - floating-point multiply-add
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l183">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmaf.html">fmaf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fma, fmaf, fmal - floating-point multiply-add
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l184">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmal.html">fmal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fma, fmaf, fmal - floating-point multiply-add
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l186">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l152">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmax.html">fmax</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l187">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmaxf.html">fmaxf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l188">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmaxl.html">fmaxl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l124">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmemopen.html">fmemopen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>fmemopen - open a memory buffer stream
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l164">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmin.html">fmin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l165">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fminf.html">fminf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l166">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fminl.html">fminl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l168">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmod.html">fmod</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmod, fmodf, fmodl - floating-point remainder value function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l169">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmodf.html">fmodf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmod, fmodf, fmodl - floating-point remainder value function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l170">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmodl.html">fmodl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmod, fmodf, fmodl - floating-point remainder value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l190">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l153">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmin.html">fmin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l191">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fminf.html">fminf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l192">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fminl.html">fminl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l194">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l154">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmod.html">fmod</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmod, fmodf, fmodl - floating-point remainder value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l195">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmodf.html">fmodf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmod, fmodf, fmodl - floating-point remainder value function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l196">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmodl.html">fmodl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fmod, fmodf, fmodl - floating-point remainder value function
 <tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmtmsg.html">fmtmsg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fmtmsg.h.html">fmtmsg.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>fmtmsg - display a message in the specified format on standard error and/or a system console
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/fnmatch.h#l21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html">fnmatch</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fnmatch.h.html">fnmatch.h</a><td>&#160;<td>fnmatch - match a filename or a pathname
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fopen.html">fopen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fopen - open a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fork.html">fork</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>fork - create a new process
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l126">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fpathconf.html">fpathconf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>fpathconf, pathconf - get configurable pathname variables
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l44">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fpclassify.html">fpclassify</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fpclassify - classify real floating type
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l47">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fpclassify.html">fpclassify</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>fpclassify - classify real floating type
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fprintf.html">fprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>dprintf, fprintf, printf, snprintf, sprintf - print formatted output
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l87">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fputc.html">fputc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fputc - put a byte on a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l94">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fputs.html">fputs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fputs - put a string on a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/netdb.h#l62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/freeaddrinfo.html">freeaddrinfo</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>freeaddrinfo, getaddrinfo - get address information
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/locale.h#l74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/freelocale.html">freelocale</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/locale.h.html">locale.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>freelocale - free resources allocated for a locale object
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l61">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/freopen.html">freopen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>freopen - open a stream
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l172">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/frexp.html">frexp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l173">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/frexpf.html">frexpf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l174">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/frexpl.html">frexpl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l198">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l155">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/frexp.html">frexp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l199">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/frexpf.html">frexpf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l200">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/frexpl.html">frexpl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fscanf.html">fscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fscanf, scanf, sscanf - convert formatted input
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l72">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fseek.html">fseek</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fseek, fseeko - reposition a file-position indicator in a stream
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l130">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fseeko.html">fseeko</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>fseek, fseeko - reposition a file-position indicator in a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/search.h#l21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hsearch.html">hsearch</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/search.h.html">search.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>hcreate, hdestroy, hsearch - manage hash search table
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/arpa/inet.h#l20">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/netinet/in.h#l66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/htonl.html">htonl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/arpa_inet.h.html">arpa/inet.h</a><td>&#160;<td>htonl, htons, ntohl, ntohs - convert values between host and network byte order
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/arpa/inet.h#l21">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/netinet/in.h#l67">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/htons.html">htons</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/arpa_inet.h.html">arpa/inet.h</a><td>&#160;<td>htonl, htons, ntohl, ntohs - convert values between host and network byte order
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l176">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hypot.html">hypot</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>hypot, hypotf, hypotl - Euclidean distance function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l177">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hypotf.html">hypotf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>hypot, hypotf, hypotl - Euclidean distance function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l178">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hypotl.html">hypotl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>hypot, hypotf, hypotl - Euclidean distance function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l202">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l156">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hypot.html">hypot</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>hypot, hypotf, hypotl - Euclidean distance function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l203">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hypotf.html">hypotf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>hypot, hypotf, hypotl - Euclidean distance function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l204">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hypotl.html">hypotl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>hypot, hypotf, hypotl - Euclidean distance function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/iconv.h#l15">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html">iconv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/iconv.h.html">iconv.h</a><td>&#160;<td>iconv - codeset conversion function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/iconv.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv_close.html">iconv_close</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/iconv.h.html">iconv.h</a><td>&#160;<td>iconv_close - codeset conversion deallocation function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/iconv.h#l14">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv_open.html">iconv_open</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/iconv.h.html">iconv.h</a><td>&#160;<td>iconv_open - codeset conversion allocation function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/net/if.h#l17">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/if_indextoname.html">if_indextoname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/net_if.h.html">net/if.h</a><td>&#160;<td>if_indextoname - map a network interface index to its corresponding name
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/net/if.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/if_nameindex.html">if_nameindex</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/net_if.h.html">net/if.h</a><td>&#160;<td>if_nameindex - return all network interface names and indexes
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/net/if.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/if_nametoindex.html">if_nametoindex</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/net_if.h.html">net/if.h</a><td>&#160;<td>if_nametoindex - map a network interface name to its corresponding index
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l180">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ilogb.html">ilogb</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ilogb, ilogbf, ilogbl - return an unbiased exponent
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l181">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ilogbf.html">ilogbf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ilogb, ilogbf, ilogbl - return an unbiased exponent
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l182">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ilogbl.html">ilogbl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ilogb, ilogbf, ilogbl - return an unbiased exponent
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l206">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l157">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ilogb.html">ilogb</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ilogb, ilogbf, ilogbl - return an unbiased exponent
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l207">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ilogbf.html">ilogbf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ilogb, ilogbf, ilogbl - return an unbiased exponent
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l208">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ilogbl.html">ilogbl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ilogb, ilogbf, ilogbl - return an unbiased exponent
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/inttypes.h#l15">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/imaxabs.html">imaxabs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/inttypes.h.html">inttypes.h</a><td>&#160;<td>imaxabs - return absolute value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/inttypes.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/imaxdiv.html">imaxdiv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/inttypes.h.html">inttypes.h</a><td>&#160;<td>imaxdiv - return quotient and remainder
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/arpa/inet.h#l25">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/inet_addr.html">inet_addr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/arpa_inet.h.html">arpa/inet.h</a><td>&#160;<td>inet_addr, inet_ntoa - IPv4 address manipulation
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l41">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iscntrl_l.html">iscntrl_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>iscntrl, iscntrl_l - test for a control character
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l24">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l12">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isdigit.html">isdigit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isdigit, isdigit_l - test for a decimal digit
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isdigit_l.html">isdigit_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>isdigit, isdigit_l - test for a decimal digit
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l52">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isfinite.html">isfinite</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isfinite - test for finite value
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l67">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isfinite.html">isfinite</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isfinite - test for finite value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l28">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l13">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isgraph.html">isgraph</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isgraph, isgraph_l - test for a visible character
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isgraph_l.html">isgraph_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>isgraph, isgraph_l - test for a visible character
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l74">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isgreater.html">isgreater</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isgreater - test if x greater than y
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l73">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isgreaterequal.html">isgreaterequal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isgreaterequal - test if x is greater than or equal to y
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l49">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isinf.html">isinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isinf - test for infinity
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l70">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isless.html">isless</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isless - test if x is less than y
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l71">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/islessequal.html">islessequal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>islessequal - test if x is less than or equal to y
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l72">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/islessgreater.html">islessgreater</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>islessgreater - test if x is less than or greater than y
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l100">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isgreater.html">isgreater</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isgreater - test if x greater than y
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l99">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isgreaterequal.html">isgreaterequal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isgreaterequal - test if x is greater than or equal to y
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l52">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isinf.html">isinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isinf - test for infinity
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l96">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isless.html">isless</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isless - test if x is less than y
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l97">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/islessequal.html">islessequal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>islessequal - test if x is less than or equal to y
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l98">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/islessgreater.html">islessgreater</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>islessgreater - test if x is less than or greater than y
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l25">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l14">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/islower.html">islower</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>islower, islower_l - test for a lowercase letter
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l44">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/islower_l.html">islower_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>islower, islower_l - test for a lowercase letter
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l50">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isnan.html">isnan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isnan - test for a NaN
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l51">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isnormal.html">isnormal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isnormal - test for a normal value
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l57">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isnan.html">isnan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isnan - test for a NaN
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l62">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isnormal.html">isnormal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isnormal - test for a normal value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l27">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l15">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isprint.html">isprint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isprint, isprint_l - test for a printable character
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l45">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isprint_l.html">isprint_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>isprint, isprint_l - test for a printable character
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ispunct.html">ispunct</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>ispunct, ispunct_l - test for a punctuation character
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ispunct_l.html">ispunct_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>ispunct, ispunct_l - test for a punctuation character
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l17">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isspace.html">isspace</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isspace, isspace_l - test for a white-space character
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l47">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isspace_l.html">isspace_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>isspace, isspace_l - test for a white-space character
-<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l54">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isunordered.html">isunordered</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isunordered - test if arguments are unordered
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l81">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isunordered.html">isunordered</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>isunordered - test if arguments are unordered
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l26">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isupper.html">isupper</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isupper, isupper_l - test for an uppercase letter
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isupper_l.html">isupper_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>isupper, isupper_l - test for an uppercase letter
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l155">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wctype.h#l24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswalnum.html">iswalnum</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswalnum, iswalnum_l - test for an alphanumeric wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wctype.h#l60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswxdigit_l.html">iswxdigit_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>iswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l19">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isxdigit.html">isxdigit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isxdigit, isxdigit_l - test for a hexadecimal digit
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ctype.h#l49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isxdigit_l.html">isxdigit_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>isxdigit, isxdigit_l - test for a hexadecimal digit
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l319">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/j0.html">j0</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>j0, j1, jn - Bessel functions of the first kind
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l320">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/j1.html">j1</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>j0, j1, jn - Bessel functions of the first kind
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l321">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/jn.html">jn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>j0, j1, jn - Bessel functions of the first kind
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l356">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/j0.html">j0</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>j0, j1, jn - Bessel functions of the first kind
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l360">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/j1.html">j1</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>j0, j1, jn - Bessel functions of the first kind
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l364">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/jn.html">jn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>j0, j1, jn - Bessel functions of the first kind
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l124">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/jrand48.html">jrand48</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l159">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/kill.html">kill</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>kill - send a signal to a process or a group of processes
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l185">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/killpg.html">killpg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>killpg - send a signal to a process group
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/labs.html">labs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>labs, llabs - return a long integer absolute value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lchown.html">lchown</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>lchown - change the owner and group of a symbolic link
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l127">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lcong48.html">lcong48</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l184">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ldexp.html">ldexp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ldexp, ldexpf, ldexpl - load exponent of a floating-point number
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l185">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ldexpf.html">ldexpf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ldexp, ldexpf, ldexpl - load exponent of a floating-point number
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l186">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ldexpl.html">ldexpl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ldexp, ldexpf, ldexpl - load exponent of a floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l210">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l158">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ldexp.html">ldexp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ldexp, ldexpf, ldexpl - load exponent of a floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l211">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ldexpf.html">ldexpf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ldexp, ldexpf, ldexpl - load exponent of a floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l212">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ldexpl.html">ldexpl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>ldexp, ldexpf, ldexpl - load exponent of a floating-point number
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l63">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ldiv.html">ldiv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>ldiv, lldiv - compute quotient and remainder of a long division
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/search.h#l28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lfind.html">lfind</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/search.h.html">search.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>lsearch, lfind - linear search and update
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l188">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lgamma.html">lgamma</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lgamma, lgammaf, lgammal, signgam - log gamma function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l189">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lgammaf.html">lgammaf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lgamma, lgammaf, lgammal, signgam - log gamma function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l190">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lgammal.html">lgammal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lgamma, lgammaf, lgammal, signgam - log gamma function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l214">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l159">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lgamma.html">lgamma</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lgamma, lgammaf, lgammal, signgam - log gamma function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l215">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lgammaf.html">lgammaf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lgamma, lgammaf, lgammal, signgam - log gamma function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l216">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lgammal.html">lgammal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lgamma, lgammaf, lgammal, signgam - log gamma function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/link.html">link</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>link, linkat - link one file to another file relative to two directory file descriptors
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/linkat.html">linkat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>link, linkat - link one file to another file relative to two directory file descriptors
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/aio.h#l52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lio_listio.html">lio_listio</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html">aio.h</a><td>&#160;<td>lio_listio - list directed I/O
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/socket.h#l238">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/listen.html">listen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>listen - listen for socket connections and limit the queue of incoming connections
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llabs.html">llabs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>labs, llabs - return a long integer absolute value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l64">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lldiv.html">lldiv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>ldiv, lldiv - compute quotient and remainder of a long division
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l192">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llrint.html">llrint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l193">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llrintf.html">llrintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l194">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llrintl.html">llrintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l196">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llround.html">llround</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llround, llroundf, llroundl - round to nearest integer value
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l197">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llroundf.html">llroundf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llround, llroundf, llroundl - round to nearest integer value
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l198">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llroundl.html">llroundl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llround, llroundf, llroundl - round to nearest integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l218">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l160">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llrint.html">llrint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l219">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llrintf.html">llrintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l220">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llrintl.html">llrintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l222">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l161">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llround.html">llround</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llround, llroundf, llroundl - round to nearest integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l223">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llroundf.html">llroundf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llround, llroundf, llroundl - round to nearest integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l224">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/llroundl.html">llroundl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>llround, llroundf, llroundl - round to nearest integer value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/locale.h#l53">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/localeconv.html">localeconv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/locale.h.html">locale.h</a><td>&#160;<td>localeconv - return locale-specific information
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/localtime.html">localtime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td>&#160;<td>localtime, localtime_r - convert a time value to a broken-down local time
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l65">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/localtime_r.html">localtime_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>localtime, localtime_r - convert a time value to a broken-down local time
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l136">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lockf.html">lockf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>lockf - record locking on files
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l200">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log.html">log</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log, logf, logl - natural logarithm function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l204">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log10.html">log10</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log10, log10f, log10l - base 10 logarithm function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l205">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log10f.html">log10f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log10, log10f, log10l - base 10 logarithm function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l206">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log10l.html">log10l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log10, log10f, log10l - base 10 logarithm function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l208">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log1p.html">log1p</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log1p, log1pf, log1pl - compute a natural logarithm
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l209">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log1pf.html">log1pf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log1p, log1pf, log1pl - compute a natural logarithm
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l210">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log1pl.html">log1pl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log1p, log1pf, log1pl - compute a natural logarithm
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l212">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log2.html">log2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log2, log2f, log2l - compute base 2 logarithm functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l213">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log2f.html">log2f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log2, log2f, log2l - compute base 2 logarithm functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l214">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log2l.html">log2l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log2, log2f, log2l - compute base 2 logarithm functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l216">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logb.html">logb</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>logb, logbf, logbl - radix-independent exponent
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l217">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logbf.html">logbf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>logb, logbf, logbl - radix-independent exponent
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l218">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logbl.html">logbl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>logb, logbf, logbl - radix-independent exponent
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l201">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logf.html">logf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log, logf, logl - natural logarithm function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l202">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logl.html">logl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log, logf, logl - natural logarithm function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l226">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l162">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log.html">log</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log, logf, logl - natural logarithm function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l230">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l163">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log10.html">log10</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log10, log10f, log10l - base 10 logarithm function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l231">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log10f.html">log10f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log10, log10f, log10l - base 10 logarithm function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l232">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log10l.html">log10l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log10, log10f, log10l - base 10 logarithm function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l234">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l164">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log1p.html">log1p</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log1p, log1pf, log1pl - compute a natural logarithm
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l235">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log1pf.html">log1pf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log1p, log1pf, log1pl - compute a natural logarithm
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l236">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log1pl.html">log1pl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log1p, log1pf, log1pl - compute a natural logarithm
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l238">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l165">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log2.html">log2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log2, log2f, log2l - compute base 2 logarithm functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l239">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log2f.html">log2f</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log2, log2f, log2l - compute base 2 logarithm functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l240">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/log2l.html">log2l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log2, log2f, log2l - compute base 2 logarithm functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l242">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l166">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logb.html">logb</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>logb, logbf, logbl - radix-independent exponent
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l243">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logbf.html">logbf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>logb, logbf, logbl - radix-independent exponent
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l244">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logbl.html">logbl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>logb, logbf, logbl - radix-independent exponent
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l227">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logf.html">logf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log, logf, logl - natural logarithm function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l228">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/logl.html">logl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>log, logf, logl - natural logarithm function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l32">d</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/longjmp.html">longjmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/setjmp.h.html">setjmp.h</a><td>&#160;<td>longjmp - non-local goto
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l121">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lrand48.html">lrand48</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l220">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lrint.html">lrint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lrint, lrintf, lrintl - round to nearest integer value using current rounding direction
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l221">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lrintf.html">lrintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lrint, lrintf, lrintl - round to nearest integer value using current rounding direction
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l222">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lrintl.html">lrintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lrint, lrintf, lrintl - round to nearest integer value using current rounding direction
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l224">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lround.html">lround</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lround, lroundf, lroundl - round to nearest integer value
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l225">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lroundf.html">lroundf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lround, lroundf, lroundl - round to nearest integer value
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l226">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lroundl.html">lroundl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lround, lroundf, lroundl - round to nearest integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l246">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l167">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lrint.html">lrint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lrint, lrintf, lrintl - round to nearest integer value using current rounding direction
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l247">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lrintf.html">lrintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lrint, lrintf, lrintl - round to nearest integer value using current rounding direction
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l248">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lrintl.html">lrintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lrint, lrintf, lrintl - round to nearest integer value using current rounding direction
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l250">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l168">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lround.html">lround</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lround, lroundf, lroundl - round to nearest integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l251">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lroundf.html">lroundf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lround, lroundf, lroundl - round to nearest integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l252">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lroundl.html">lroundl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>lround, lroundf, lroundl - round to nearest integer value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/search.h#l26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lsearch.html">lsearch</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/search.h.html">search.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>lsearch, lfind - linear search and update
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l40">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lseek.html">lseek</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>lseek - move the read/write file offset
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/stat.h#l73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/lstat.html">lstat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>fstatat, lstat, stat - get file status
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/mman.h#l23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mlock.html">mlock</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#MLR">MLR</a><td>mlock, munlock - lock or unlock a range of process address space (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/mman.h#l25">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mlockall.html">mlockall</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#ML">ML</a><td>mlockall, munlockall - lock/unlock the address space of a process (<b>REALTIME</b>)
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/mman.h#l15">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mmap.html">mmap</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td>&#160;<td>mmap - map pages of memory
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l228">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/modf.html">modf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>modf, modff, modfl - decompose a floating-point number
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l229">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/modff.html">modff</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>modf, modff, modfl - decompose a floating-point number
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l230">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/modfl.html">modfl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>modf, modff, modfl - decompose a floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l254">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/modf.html">modf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>modf, modff, modfl - decompose a floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l255">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/modff.html">modff</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>modf, modff, modfl - decompose a floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l256">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/modfl.html">modfl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>modf, modff, modfl - decompose a floating-point number
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/mman.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mprotect.html">mprotect</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td>&#160;<td>mprotect - set protection of memory mapping
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/mqueue.h#l20">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mq_close.html">mq_close</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/mqueue.h.html">mqueue.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#MSG">MSG</a><td>mq_close - close a message queue (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/mqueue.h#l21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mq_getattr.html">mq_getattr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/mqueue.h.html">mqueue.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#MSG">MSG</a><td>mq_getattr - get message queue attributes (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/mman.h#l24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/munlock.html">munlock</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#MLR">MLR</a><td>mlock, munlock - lock or unlock a range of process address space (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/mman.h#l26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/munlockall.html">munlockall</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#ML">ML</a><td>mlockall, munlockall - lock/unlock the address space of a process (<b>REALTIME</b>)
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/mman.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/munmap.html">munmap</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td>&#160;<td>munmap - unmap pages of memory
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l232">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nan.html">nan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nan, nanf, nanl - return quiet NaN
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l233">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nanf.html">nanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nan, nanf, nanl - return quiet NaN
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l234">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nanl.html">nanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nan, nanf, nanl - return quiet NaN
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l258">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nan.html">nan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nan, nanf, nanl - return quiet NaN
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l259">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nanf.html">nanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nan, nanf, nanl - return quiet NaN
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l260">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nanl.html">nanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nan, nanf, nanl - return quiet NaN
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l84">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nanosleep.html">nanosleep</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>nanosleep - high resolution sleep
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l236">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nearbyint.html">nearbyint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nearbyint, nearbyintf, nearbyintl - floating-point rounding functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l237">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nearbyintf.html">nearbyintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nearbyint, nearbyintf, nearbyintl - floating-point rounding functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l238">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nearbyintl.html">nearbyintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nearbyint, nearbyintf, nearbyintl - floating-point rounding functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l262">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l169">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nearbyint.html">nearbyint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nearbyint, nearbyintf, nearbyintl - floating-point rounding functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l263">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nearbyintf.html">nearbyintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nearbyint, nearbyintf, nearbyintl - floating-point rounding functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l264">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nearbyintl.html">nearbyintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nearbyint, nearbyintf, nearbyintl - floating-point rounding functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/locale.h#l75">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/newlocale.html">newlocale</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/locale.h.html">locale.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>newlocale - create or modify a locale object
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l240">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nextafter.html">nextafter</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l241">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nextafterf.html">nextafterf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l242">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nextafterl.html">nextafterl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l244">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nexttoward.html">nexttoward</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l245">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nexttowardf.html">nexttowardf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l246">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nexttowardl.html">nexttowardl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l266">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l170">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nextafter.html">nextafter</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l267">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nextafterf.html">nextafterf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l268">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nextafterl.html">nextafterl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l270">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l171">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nexttoward.html">nexttoward</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l271">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nexttowardf.html">nexttowardf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l272">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nexttowardl.html">nexttowardl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/ftw.h#l33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nftw.html">nftw</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ftw.h.html">ftw.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>nftw - walk a file tree
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l142">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nice.html">nice</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>nice - change the nice value of a process
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/langinfo.h#l80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nl_langinfo.html">nl_langinfo</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/langinfo.h.html">langinfo.h</a><td>&#160;<td>nl_langinfo, nl_langinfo_l - language information
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/spawn.h#l38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_spawnp.html">posix_spawnp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/spawn.h.html">spawn.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#SPN">SPN</a><td>posix_spawn, posix_spawnp - spawn a process (<b>ADVANCED REALTIME</b>)
 <tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_typed_mem_get_info.html">posix_typed_mem_get_info</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#TYM">TYM</a><td>posix_typed_mem_get_info - query typed memory information (<b>ADVANCED REALTIME</b>)
 <tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_typed_mem_open.html">posix_typed_mem_open</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_mman.h.html">sys/mman.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#TYM">TYM</a><td>posix_typed_mem_open - open a typed memory object (<b>ADVANCED REALTIME</b>)
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l248">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pow.html">pow</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>pow, powf, powl - power function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l249">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/powf.html">powf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>pow, powf, powl - power function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l250">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/powl.html">powl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>pow, powf, powl - power function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l274">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l172">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pow.html">pow</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>pow, powf, powl - power function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l275">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/powf.html">powf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>pow, powf, powl - power function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l276">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/powl.html">powl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>pow, powf, powl - power function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pread.html">pread</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>pread, read - read from a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l97">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/printf.html">printf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>dprintf, fprintf, printf, snprintf, sprintf - print formatted output
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/select.h#l31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pselect.html">pselect</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_select.h.html">sys/select.h</a><td>&#160;<td>pselect, select - synchronous I/O multiplexing
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/regex.h#l54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/regerror.html">regerror</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/regex.h.html">regex.h</a><td>&#160;<td>regcomp, regerror, regexec, regfree - regular expression matching
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/regex.h#l51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/regexec.html">regexec</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/regex.h.html">regex.h</a><td>&#160;<td>regcomp, regerror, regexec, regfree - regular expression matching
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/regex.h#l52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/regfree.html">regfree</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/regex.h.html">regex.h</a><td>&#160;<td>regcomp, regerror, regexec, regfree - regular expression matching
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l252">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remainder.html">remainder</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remainder, remainderf, remainderl - remainder function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l253">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remainderf.html">remainderf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remainder, remainderf, remainderl - remainder function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l254">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remainderl.html">remainderl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remainder, remainderf, remainderl - remainder function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l278">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l173">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remainder.html">remainder</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remainder, remainderf, remainderl - remainder function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l279">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remainderf.html">remainderf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remainder, remainderf, remainderl - remainder function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l280">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remainderl.html">remainderl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remainder, remainderf, remainderl - remainder function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l64">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remove.html">remove</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>remove - remove a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/search.h#l24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remque.html">remque</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/search.h.html">search.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>insque, remque - insert or remove an element in a queue
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l256">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remquo.html">remquo</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remquo, remquof, remquol - remainder functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l257">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remquof.html">remquof</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remquo, remquof, remquol - remainder functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l258">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remquol.html">remquol</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remquo, remquof, remquol - remainder functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l282">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l174">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remquo.html">remquo</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remquo, remquof, remquol - remainder functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l283">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remquof.html">remquof</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remquo, remquof, remquol - remainder functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l284">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/remquol.html">remquol</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>remquo, remquof, remquol - remainder functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l65">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rename.html">rename</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>rename, renameat - rename file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l143">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/renameat.html">renameat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>rename, renameat - rename file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rewind.html">rewind</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>rewind - reset the file position indicator in a stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dirent.h#l31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rewinddir.html">rewinddir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>rewinddir - reset the position of a directory stream to the beginning of a directory
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l260">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rint.html">rint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>rint, rintf, rintl - round-to-nearest integral value
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l261">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rintf.html">rintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>rint, rintf, rintl - round-to-nearest integral value
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l262">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rintl.html">rintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>rint, rintf, rintl - round-to-nearest integral value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l286">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l175">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rint.html">rint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>rint, rintf, rintl - round-to-nearest integral value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l287">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rintf.html">rintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>rint, rintf, rintl - round-to-nearest integral value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l288">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rintl.html">rintl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>rint, rintf, rintl - round-to-nearest integral value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rmdir.html">rmdir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>rmdir - remove a directory
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l264">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/round.html">round</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>round, roundf, roundl - round to the nearest integer value in a floating-point format
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l265">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/roundf.html">roundf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>round, roundf, roundl - round to the nearest integer value in a floating-point format
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l266">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/roundl.html">roundl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>round, roundf, roundl - round to the nearest integer value in a floating-point format
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l268">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbln.html">scalbln</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l269">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalblnf.html">scalblnf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l270">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalblnl.html">scalblnl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l272">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbn.html">scalbn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l273">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbnf.html">scalbnf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l274">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbnl.html">scalbnl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l290">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l176">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/round.html">round</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>round, roundf, roundl - round to the nearest integer value in a floating-point format
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l291">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/roundf.html">roundf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>round, roundf, roundl - round to the nearest integer value in a floating-point format
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l292">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/roundl.html">roundl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>round, roundf, roundl - round to the nearest integer value in a floating-point format
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l294">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l177">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbln.html">scalbln</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l295">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalblnf.html">scalblnf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l296">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalblnl.html">scalblnl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l298">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l178">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbn.html">scalbn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l299">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbnf.html">scalbnf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l300">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scalbnl.html">scalbnl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dirent.h#l37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scandir.html">scandir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>alphasort, scandir - scan a directory
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l107">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/scanf.html">scanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fscanf, scanf, sscanf - convert formatted input
 <tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sched.h#l21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sched_get_priority_max.html">sched_get_priority_max</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sched.h.html">sched.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#PS">PS</a><td>sched_get_priority_max, sched_get_priority_min - get priority limits (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l165">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigismember.html">sigismember</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>sigismember - test for a signal in a signal set
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/setjmp.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/siglongjmp.html">siglongjmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/setjmp.h.html">setjmp.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>siglongjmp - non-local goto with signal handling
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l223">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/signal.html">signal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td>&#160;<td>signal - signal management
-<tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/signbit.html">signbit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>signbit - test sign
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l325">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/signgam.html">signgam</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>lgamma, lgammaf, lgammal, signgam - log gamma function
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l76">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/signbit.html">signbit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>signbit - test sign
+<tr><td>&#160;<td>B<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l346">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/signgam.html">signgam</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>lgamma, lgammaf, lgammal, signgam - log gamma function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l190">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigpause.html">sigpause</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>sighold, sigignore, sigpause, sigrelse, sigset - signal management
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l170">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigpending.html">sigpending</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>sigpending - examine pending signals
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l167">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigprocmask.html">sigprocmask</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>pthread_sigmask, sigprocmask - examine and change blocked signals
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l173">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigtimedwait.html">sigtimedwait</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>sigtimedwait, sigwaitinfo - wait for queued signals
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l171">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigwait.html">sigwait</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>sigwait - wait for queued signals
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l172">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigwaitinfo.html">sigwaitinfo</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>sigtimedwait, sigwaitinfo - wait for queued signals
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l276">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sin.html">sin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sin, sinf, sinl - sine function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l277">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinf.html">sinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sin, sinf, sinl - sine function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l280">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinh.html">sinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sinh, sinhf, sinhl - hyperbolic sine functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l281">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinhf.html">sinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sinh, sinhf, sinhl - hyperbolic sine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l282">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinhl.html">sinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sinh, sinhf, sinhl - hyperbolic sine functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l278">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinl.html">sinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sin, sinf, sinl - sine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l302">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l179">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sin.html">sin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sin, sinf, sinl - sine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l303">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinf.html">sinf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sin, sinf, sinl - sine function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l306">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l180">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinh.html">sinh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sinh, sinhf, sinhl - hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l307">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinhf.html">sinhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sinh, sinhf, sinhl - hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l308">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinhl.html">sinhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sinh, sinhf, sinhl - hyperbolic sine functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l304">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sinl.html">sinl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sin, sinf, sinl - sine function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l78">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sleep.html">sleep</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>sleep - suspend execution for an interval of time
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l100">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/snprintf.html">snprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>dprintf, fprintf, printf, snprintf, sprintf - print formatted output
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/socket.h#l254">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sockatmark.html">sockatmark</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>sockatmark - determine whether a socket is at the out-of-band mark
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/socket.h#l231">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/socket.html">socket</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>socket - create an endpoint for communication
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/socket.h#l232">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/socketpair.html">socketpair</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>socketpair - create a pair of connected sockets
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l99">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sprintf.html">sprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>dprintf, fprintf, printf, snprintf, sprintf - print formatted output
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l284">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sqrt.html">sqrt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sqrt, sqrtf, sqrtl - square root function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l285">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sqrtf.html">sqrtf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sqrt, sqrtf, sqrtl - square root function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l286">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sqrtl.html">sqrtl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sqrt, sqrtf, sqrtl - square root function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l310">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l181">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sqrt.html">sqrt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sqrt, sqrtf, sqrtl - square root function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l311">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sqrtf.html">sqrtf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sqrt, sqrtf, sqrtl - square root function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l312">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sqrtl.html">sqrtl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>sqrt, sqrtf, sqrtl - square root function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/srand.html">srand</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>rand, rand_r, srand - pseudo-random number generator
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l125">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/srand48.html">srand48</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/srandom.html">srandom</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>initstate, random, setstate, srandom - pseudo-random number functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l127">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sysconf.html">sysconf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>sysconf - get configurable system variables
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/syslog.h#l60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/syslog.html">syslog</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/syslog.h.html">syslog.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>closelog, openlog, setlogmask, syslog - control system log
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/system.html">system</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>system - issue a command
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l288">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tan.html">tan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tan, tanf, tanl - tangent function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l289">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanf.html">tanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tan, tanf, tanl - tangent function
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l292">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanh.html">tanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tanh, tanhf, tanhl - hyperbolic tangent functions
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l293">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanhf.html">tanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tanh, tanhf, tanhl - hyperbolic tangent functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l294">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanhl.html">tanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tanh, tanhf, tanhl - hyperbolic tangent functions
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l290">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanl.html">tanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tan, tanf, tanl - tangent function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l314">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l182">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tan.html">tan</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tan, tanf, tanl - tangent function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l315">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanf.html">tanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tan, tanf, tanl - tangent function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l318">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l183">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanh.html">tanh</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tanh, tanhf, tanhl - hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l319">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanhf.html">tanhf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tanh, tanhf, tanhl - hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l320">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanhl.html">tanhl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tanh, tanhf, tanhl - hyperbolic tangent functions
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l316">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tanl.html">tanl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tan, tanf, tanl - tangent function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/termios.h#l29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcdrain.html">tcdrain</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>tcdrain - wait for transmission of output
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/termios.h#l31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcflow.html">tcflow</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>tcflow - suspend or restart the transmission or reception of data
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/termios.h#l30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcflush.html">tcflush</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>tcflush - flush non-transmitted output data, non-read input data, or both
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dirent.h#l33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/telldir.html">telldir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>telldir - current location of a named directory stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdio.h#l151">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tempnam.html">tempnam</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>tempnam - create a name for a temporary file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/search.h#l32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tfind.html">tfind</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/search.h.html">search.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>tdelete, tfind, tsearch, twalk - manage a binary search tree
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l296">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tgamma.html">tgamma</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tgamma, tgammaf, tgammal - compute gamma() function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l297">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tgammaf.html">tgammaf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tgamma, tgammaf, tgammal - compute gamma() function
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l298">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tgammal.html">tgammal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tgamma, tgammaf, tgammal - compute gamma() function
+<tr><td>&#160;<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l322">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l184">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tgamma.html">tgamma</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tgamma, tgammaf, tgammal - compute gamma() function
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l323">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tgammaf.html">tgammaf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tgamma, tgammaf, tgammal - compute gamma() function
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l324">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tgammal.html">tgammal</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>tgamma, tgammaf, tgammal - compute gamma() function
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l47">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/time.html">time</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td>&#160;<td>time - get time
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l92">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/timer_create.html">timer_create</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>timer_create - create a per-process timer
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/time.h#l93">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/timer_delete.html">timer_delete</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>timer_delete - delete a per-process timer
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wctype.h#l62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/towlower_l.html">towlower_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>towlower, towlower_l - transliterate uppercase wide-character code to lowercase
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l169">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wctype.h#l39">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/towupper.html">towupper</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>towupper, towupper_l - transliterate lowercase wide-character code to uppercase
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wctype.h#l63">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/towupper_l.html">towupper_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>towupper, towupper_l - transliterate lowercase wide-character code to uppercase
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l300">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/trunc.html">trunc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>trunc, truncf, truncl - round to truncated integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l326">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/tgmath.h#l185">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/trunc.html">trunc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>trunc, truncf, truncl - round to truncated integer value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l63">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/truncate.html">truncate</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>truncate - truncate a file to a specified length
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l301">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/truncf.html">truncf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>trunc, truncf, truncl - round to truncated integer value
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l302">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/truncl.html">truncl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>trunc, truncf, truncl - round to truncated integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l327">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/truncf.html">truncf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>trunc, truncf, truncl - round to truncated integer value
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l328">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/truncl.html">truncl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td>&#160;<td>trunc, truncf, truncl - round to truncated integer value
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/search.h#l33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tsearch.html">tsearch</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/search.h.html">search.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>tdelete, tfind, tsearch, twalk - manage a binary search tree
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ttyname.html">ttyname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>ttyname, ttyname_r - find the pathname of a terminal
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l99">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ttyname_r.html">ttyname_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>ttyname, ttyname_r - find the pathname of a terminal
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l45">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/write.html">write</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>pwrite, write - write on a file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/uio.h#l15">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/writev.html">writev</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_uio.h.html">sys/uio.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>writev - write a vector
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/wchar.h#l109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wscanf.html">wscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>fwscanf, swscanf, wscanf - convert formatted wide-character input
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l322">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/y0.html">y0</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>y0, y1, yn - Bessel functions of the second kind
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l323">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/y1.html">y1</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>y0, y1, yn - Bessel functions of the second kind
-<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l324">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/yn.html">yn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>y0, y1, yn - Bessel functions of the second kind
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l368">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/y0.html">y0</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>y0, y1, yn - Bessel functions of the second kind
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l372">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/y1.html">y1</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>y0, y1, yn - Bessel functions of the second kind
+<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/math.h#l376">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/yn.html">yn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/math.h.html">math.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>y0, y1, yn - Bessel functions of the second kind
 </table>
-<h4>stats</h4><ul><li>missing: 92<li>nosym: 112<li>nodecl: 1</ul>
+<h4>stats</h4><ul><li>missing: 25<li>nosym: 26<li>nodecl: 1</ul>