update tables (arm code, dynlink only for PIC)
authornsz <nsz@port70.net>
Mon, 19 Sep 2011 08:45:56 +0000 (10:45 +0200)
committernsz <nsz@port70.net>
Mon, 19 Sep 2011 08:45:56 +0000 (10:45 +0200)
tab_c99.html
tab_posix.html

index 01b5d5c..666c6c1 100644 (file)
@@ -1,5 +1,5 @@
 <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=3f72cdac73030761120cf32aeef44e7d03e2f1fa">3f72cdac73030761120cf32aeef44e7d03e2f1fa</a><br>Date:   Sun Sep 18 10:14:37 2011 -0400<br><br>    overhaul clone syscall wrapping<br>    <br>    several things are changed. first, i have removed the old __uniclone<br>    function signature and replaced it with the "standard" linux<br>    __clone/clone signature. this was necessary to expose clone to<br>    applications anyway, and it makes it easier to port __clone to new<br>    archs, since it's now testable independently of pthread_create.<br>    <br>    secondly, i have removed all references to the ugly ldt descriptor<br>    structure (i386 only) from the c code and pthread structure. in places<br>    where it is needed, it is now created on the stack just when it's<br>    needed, in assembly code. thus, the i386 __clone function takes the<br>    desired thread pointer as its argument, rather than an ldt descriptor<br>    pointer, just like on all other sane archs. this should not affect<br>    applications since there is really no way an application can use clone<br>    with threads/tls in a way that doesn't horribly conflict with and<br>    clobber the underlying implementation's use. applications are expected<br>    to use clone only for creating actual processes, possibly with new<br>    namespace features and whatnot.
+<h4>commit</h4><p>commit <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=commit;h=d960d4f2cbf18ff3476c7ac03698ec253885dd8e">d960d4f2cbf18ff3476c7ac03698ec253885dd8e</a><br>Date:   Sun Sep 18 16:44:54 2011 -0400<br><br>    initial commit of the arm port<br>    <br>    this port assumes eabi calling conventions, eabi linux syscall<br>    convention, and presence of the kernel helpers at 0xffff0f?0 needed<br>    for threads support. otherwise it makes very few assumptions, and the<br>    code should work even on armv4 without thumb support, as well as on<br>    systems with thumb interworking. the bits headers declare this a<br>    little endian system, but as far as i can tell the code should work<br>    equally well on big endian.<br>    <br>    some small details are probably broken; so far, testing has been<br>    limited to qemu/aboriginal linux.
 <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
index e7a0280..b396e90 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=3f72cdac73030761120cf32aeef44e7d03e2f1fa">3f72cdac73030761120cf32aeef44e7d03e2f1fa</a><br>Date:   Sun Sep 18 10:14:37 2011 -0400<br><br>    overhaul clone syscall wrapping<br>    <br>    several things are changed. first, i have removed the old __uniclone<br>    function signature and replaced it with the "standard" linux<br>    __clone/clone signature. this was necessary to expose clone to<br>    applications anyway, and it makes it easier to port __clone to new<br>    archs, since it's now testable independently of pthread_create.<br>    <br>    secondly, i have removed all references to the ugly ldt descriptor<br>    structure (i386 only) from the c code and pthread structure. in places<br>    where it is needed, it is now created on the stack just when it's<br>    needed, in assembly code. thus, the i386 __clone function takes the<br>    desired thread pointer as its argument, rather than an ldt descriptor<br>    pointer, just like on all other sane archs. this should not affect<br>    applications since there is really no way an application can use clone<br>    with threads/tls in a way that doesn't horribly conflict with and<br>    clobber the underlying implementation's use. applications are expected<br>    to use clone only for creating actual processes, possibly with new<br>    namespace features and whatnot.
+<h4>commit</h4><p>commit <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=commit;h=d960d4f2cbf18ff3476c7ac03698ec253885dd8e">d960d4f2cbf18ff3476c7ac03698ec253885dd8e</a><br>Date:   Sun Sep 18 16:44:54 2011 -0400<br><br>    initial commit of the arm port<br>    <br>    this port assumes eabi calling conventions, eabi linux syscall<br>    convention, and presence of the kernel helpers at 0xffff0f?0 needed<br>    for threads support. otherwise it makes very few assumptions, and the<br>    code should work even on armv4 without thumb support, as well as on<br>    systems with thumb interworking. the bits headers declare this a<br>    little endian system, but as far as i can tell the code should work<br>    equally well on big endian.<br>    <br>    some small details are probably broken; so far, testing has been<br>    limited to qemu/aboriginal linux.
 <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
@@ -15,7 +15,7 @@
 <tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l113">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/a64l.html">a64l</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>a64l, l64a - convert between a 32-bit integer and a radix-64 ASCII string
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/abort.html">abort</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>abort - generate an abnormal process abort
 <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#l43">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/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#l65">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#l66">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
@@ -56,7 +56,7 @@
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atol.html">atol</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>atol, atoll - convert a string to a long integer
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l22">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/atoll.html">atoll</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>atol, atoll - convert a string to a long integer
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/libgen.h#l9">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/basename.html">basename</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/libgen.h.html">libgen.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>basename - return the last component of a pathname
-<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#l40">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/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#l73">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/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/sys/socket.h#l41">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/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#l101">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#l102">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#l103">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/dirent.h#l34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dirfd.html">dirfd</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>dirfd - extract the file descriptor used by a DIR stream
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/libgen.h#l8">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dirname.html">dirname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/libgen.h.html">libgen.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>dirname - report the parent directory name of a file pathname
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/div.html">div</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>div - compute the quotient and remainder of an integer division
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dlfcn.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlclose.html">dlclose</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dlfcn.h.html">dlfcn.h</a><td>&#160;<td>dlclose - close a dlopen object
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dlfcn.h#l17">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlerror.html">dlerror</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dlfcn.h.html">dlfcn.h</a><td>&#160;<td>dlerror - get diagnostic information
-<tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dlfcn.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlopen.html">dlopen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dlfcn.h.html">dlfcn.h</a><td>&#160;<td>dlopen - gain access to an executable object file
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dlfcn.h#l16">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlclose.html">dlclose</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dlfcn.h.html">dlfcn.h</a><td>&#160;<td>dlclose - close a dlopen object
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dlfcn.h#l17">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlerror.html">dlerror</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dlfcn.h.html">dlfcn.h</a><td>&#160;<td>dlerror - get diagnostic information
+<tr><td>nosym<td>&#160;<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dlfcn.h#l18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlopen.html">dlopen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dlfcn.h.html">dlfcn.h</a><td>&#160;<td>dlopen - gain access to an executable object file
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/dlfcn.h#l19">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlsym.html">dlsym</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dlfcn.h.html">dlfcn.h</a><td>&#160;<td>dlsym - obtain the address of a symbol from a dlopen 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#l132">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dprintf.html">dprintf</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>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/stdlib.h#l119">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/drand48.html">drand48</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/netdb.h#l119">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getnetbyname.html">getnetbyname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/netdb.h#l117">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getnetent.html">getnetent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/getopt.h#l8">p</a> <a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/unistd.h#l121">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getopt.html">getopt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getopt, optarg, opterr, optind, optopt - command option parsing
-<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#l46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getpeername.html">getpeername</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>getpeername - get the name of the peer socket
+<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#l242">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getpeername.html">getpeername</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>getpeername - get the name of the peer 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#l94">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getpgid.html">getpgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getpgid - get the process group ID for a 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#l93">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getpgrp.html">getpgrp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getpgrp - get the process group ID of the calling 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#l91">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getpid.html">getpid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getpid - get the process ID
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/netdb.h#l125">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getservbyport.html">getservbyport</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endservent, getservbyname, getservbyport, getservent, setservent - network services database functions
 <tr><td>&#160;<td>TW<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/netdb.h#l123">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getservent.html">getservent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endservent, getservbyname, getservbyport, getservent, setservent - network services database 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#l97">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsid.html">getsid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getsid - get the process group ID of a session leader
-<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#l45">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsockname.html">getsockname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>getsockname - get the socket name
-<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#l55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsockopt.html">getsockopt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>getsockopt - get the socket options
+<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#l241">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsockname.html">getsockname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>getsockname - get the socket name
+<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#l251">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsockopt.html">getsockopt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>getsockopt - get the socket options
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l99">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsubopt.html">getsubopt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>getsubopt - parse suboption arguments from a string
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/time.h#l9">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gettimeofday.html">gettimeofday</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_time.h.html">sys/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#XSI">XSI</a><td>gettimeofday - get the 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/unistd.h#l104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getuid.html">getuid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getuid - get a real user ID
 <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#l42">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/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#l181">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>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/uio.h#l10">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/readv.html">readv</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>readv - read a vector
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l39">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/realloc.html">realloc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>realloc - memory reallocator
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l111">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/realpath.html">realpath</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>realpath - resolve a pathname
-<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#l49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/recv.html">recv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>recv - receive a message from a connected socket
-<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#l51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/recvfrom.html">recvfrom</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>recvfrom - receive a message from a socket
-<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#l53">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/recvmsg.html">recvmsg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>recvmsg - receive a message from a socket
+<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#l245">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/recv.html">recv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>recv - receive a message from a connected socket
+<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#l247">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/recvfrom.html">recvfrom</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>recvfrom - receive a message from a socket
+<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#l249">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/recvmsg.html">recvmsg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>recvmsg - receive a message from a socket
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/regex.h#l50">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/regcomp.html">regcomp</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#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/sys/sem.h#l56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/semctl.html">semctl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_sem.h.html">sys/sem.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>semctl - XSI semaphore control operations
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/sem.h#l57">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/semget.html">semget</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_sem.h.html">sys/sem.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>semget - get set of XSI semaphores
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/sem.h#l58">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/semop.html">semop</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_sem.h.html">sys/sem.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>semop - XSI semaphore operations
-<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#l48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/send.html">send</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>send - send a message 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/sys/socket.h#l52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sendmsg.html">sendmsg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>sendmsg - send a message on a socket using a message structure
-<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#l50">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html">sendto</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>sendto - send a message 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/sys/socket.h#l244">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/send.html">send</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>send - send a message 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/sys/socket.h#l248">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sendmsg.html">sendmsg</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>sendmsg - send a message on a socket using a message structure
+<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#l246">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html">sendto</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>sendto - send a message 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/stdio.h#l117">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setbuf.html">setbuf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>setbuf - assign buffering to 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#l114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setegid.html">setegid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>setegid - set the effective group ID
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l95">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setenv.html">setenv</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#CX">CX</a><td>setenv - add or change environment variable
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/resource.h#l42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setrlimit.html">setrlimit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_resource.h.html">sys/resource.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>getrlimit, setrlimit - control maximum resource consumption
 <tr><td>&#160;<td>TW<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/netdb.h#l121">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setservent.html">setservent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endservent, getservbyname, getservbyport, getservent, setservent - network services database 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#l96">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setsid.html">setsid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>setsid - create session and set process group ID
-<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#l56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setsockopt.html">setsockopt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>setsockopt - set the socket options
+<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#l252">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setsockopt.html">setsockopt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>setsockopt - set the socket options
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/stdlib.h#l118">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setstate.html">setstate</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#l109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setuid.html">setuid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>setuid - set user ID
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/utmpx.h#l39">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setutxent.html">setutxent</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>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/shm.h#l42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/shmctl.html">shmctl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_shm.h.html">sys/shm.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>shmctl - XSI shared memory control operations
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/shm.h#l43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/shmdt.html">shmdt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_shm.h.html">sys/shm.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>shmdt - XSI shared memory detach operation
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/sys/shm.h#l44">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/shmget.html">shmget</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_shm.h.html">sys/shm.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>shmget - get an XSI shared memory segment
-<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#l38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/shutdown.html">shutdown</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>shutdown - shut down socket send and receive operations
+<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#l234">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/shutdown.html">shutdown</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html">sys/socket.h</a><td>&#160;<td>shutdown - shut down socket send and receive operations
 <tr><td>&#160;<td>W<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigaction.html">sigaction</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>sigaction - examine and change a signal action
 <tr><td>&#160;<td>T<td><a href="http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/signal.h#l74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigaddset.html">sigaddset</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>sigaddset - add a signal to 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/signal.h#l97">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigaltstack.html">sigaltstack</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>sigaltstack - set and get signal alternate stack context
 <tr><td>nosym<td>&#160;<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/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#l58">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#l35">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#l36">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/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#l273">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#l274">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#l311">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#l312">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: 126<li>nosym: 119<li>nodecl: 1</ul>
+<h4>stats</h4><ul><li>missing: 126<li>nosym: 122<li>nodecl: 1</ul>