update tables for 0.9.10
authornsz <nsz@port70.net>
Sun, 14 Apr 2013 07:11:29 +0000 (07:11 +0000)
committernsz <nsz@port70.net>
Sun, 14 Apr 2013 07:11:29 +0000 (07:11 +0000)
data/musl.problems
data/posix2008.bugs
tab_c11.html
tab_c99.html
tab_posix.html

index 3e3bc16..8b08298 100644 (file)
@@ -31,8 +31,6 @@ nodecl        pivot_root      T
 proto  poll    poll.h  int(struct pollfd*,nfds_t,int)  int(struct pollfd[],nfds_t,int) int poll (struct pollfd *, nfds_t, int);        int poll(struct pollfd fds[], nfds_t nfds, int timeout);
 proto  posix_spawn     spawn.h int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const*restrict,char*const*restrict)      int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const[restrict],char*const[restrict])    int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *, const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict);  int posix_spawn(pid_t *restrict pid, const char *restrict path, const posix_spawn_file_actions_t *file_actions, const posix_spawnattr_t *restrict attrp, char *const argv[restrict], char *const envp[restrict]);
 proto  posix_spawn     process/posix_spawn.c   spawn.h int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const[restrict],char*const[restrict])    int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const*restrict,char*const*restrict)
-proto  posix_spawnattr_getschedpolicy  process/posix_spawnattr_sched.c spawn.h int(const posix_spawnattr_t*restrict,int*)      int(const posix_spawnattr_t*restrict,int*restrict)
-proto  posix_spawnattr_setschedpolicy  process/posix_spawnattr_sched.c spawn.h int(posix_spawnattr_t*restrict,int)     int(posix_spawnattr_t*,int)
 proto  posix_spawnp    spawn.h int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const*restrict,char*const*restrict)      int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const[restrict],char*const[restrict])    int posix_spawnp(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *, const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); int posix_spawnp(pid_t *restrict pid, const char *restrict file, const posix_spawn_file_actions_t *file_actions, const posix_spawnattr_t *restrict attrp, char *const argv[restrict], char *const envp[restrict]);
 proto  posix_spawnp    process/posix_spawnp.c  spawn.h int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const[restrict],char*const[restrict])    int(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const*restrict,char*const*restrict)
 proto  pthread_equal   thread/pthread_equal.c  pthread.h       int()(pthread_t,pthread_t)      int(pthread_t,pthread_t)
index 7c48209..232ba51 100644 (file)
@@ -41,3 +41,7 @@ http://pubs.opengroup.org/onlinepubs/9699919799/functions/remquo.html
 "If x is 0.0, -HUGE_VAL shall be returned" is specified for y0,y1,yn
 but yn(1,x) == -yn(-1,x) so this is incorrect mathematically
 http://pubs.opengroup.org/onlinepubs/9699919799/functions/yn.html
+
+what if syslog fails (bad printf args..)
+http://pubs.opengroup.org/onlinepubs/9699919799/functions/syslog.html
+
index 0890d4b..40455f1 100644 (file)
@@ -1,5 +1,5 @@
 <h3>musl vs c11 api</h3>
-<h4>commit</h4><p>commit <a href="http://git.musl-libc.org/cgit/musl/commit/?id=a57ac9bf64ba202bd94d1b81bddd93b850c7b9d6">a57ac9bf64ba202bd94d1b81bddd93b850c7b9d6</a><br>Date:   Fri Feb 1 01:49:07 2013 -0500<br><br>    release notes for 0.9.9
+<h4>commit</h4><p>commit <a href="http://git.musl-libc.org/cgit/musl/commit/?id=4ba3ebdcfeb7b5aa2dd5079e939514a634395124">4ba3ebdcfeb7b5aa2dd5079e939514a634395124</a><br>Date:   Wed Apr 10 22:38:46 2013 -0400<br><br>    make ifaddrs.h expose sys/socket.h<br>    <br>    the getifaddrs interface seems to have been invented by glibc, and<br>    they expose socket.h, so for us not to do so is just gratuitous<br>    incompatibility with the interface we're mimicing.
 <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><p>(Annex K apis are excluded: -D__STDC_WANT_LIB_EXT1__=0 is assumed)
 <h4>table</h4><table border=1><tr><th colspan=3>musl<th colspan=4>c11<tr><th>status<th>sym<th>decl<th>name<th>header<th>proto<th>section
 <tr><td>missing<td>&#160;<td>&#160;<td>static_assert<td>assert.h<td>&#160;<td>B.1 Diagnostics
@@ -95,7 +95,7 @@
 <tr><td>&#160;<td>&#160;<td>d <td>EDOM<td>errno.h<td>&#160;<td>B.4 Errors
 <tr><td>&#160;<td>&#160;<td>d <td>EILSEQ<td>errno.h<td>&#160;<td>B.4 Errors
 <tr><td>&#160;<td>&#160;<td>d <td>ERANGE<td>errno.h<td>&#160;<td>B.4 Errors
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/errno.h#n14">d</a> <td>errno<td>errno.h<td>&#160;<td>B.4 Errors
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/errno.h#n16">d</a> <td>errno<td>errno.h<td>&#160;<td>B.4 Errors
 <tr><td>&#160;<td>&#160;<td>t <td>fenv_t<td>fenv.h<td>&#160;<td>B.5 Floating-point environment
 <tr><td>&#160;<td>&#160;<td>d <td>FE_OVERFLOW<td>fenv.h<td>&#160;<td>B.5 Floating-point environment
 <tr><td>&#160;<td>&#160;<td>d <td>FE_TOWARDZERO<td>fenv.h<td>&#160;<td>B.5 Floating-point environment
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n18">d</a> <td>LC_ALL<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n12">d</a> <td>LC_CTYPE<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n13">d</a> <td>LC_NUMERIC<td>locale.h<td>&#160;<td>B.10 Localization
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>locale.h<td>&#160;<td>B.10 Localization
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n15">d</a> <td>LC_COLLATE<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n16">d</a> <td>LC_MONETARY<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n14">d</a> <td>LC_TIME<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdbool.h#n10">d</a> <td>__bool_true_false_are_defined<td>stdbool.h<td>&#160;<td>B.17 Boolean type and values
 <tr><td>&#160;<td>&#160;<td>t <td>ptrdiff_t<td>stddef.h<td>&#160;<td>B.18 Common definitions
 <tr><td>missing<td>&#160;<td>&#160;<td>max_align_t<td>stddef.h<td>&#160;<td>B.18 Common definitions
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>stddef.h<td>&#160;<td>B.18 Common definitions
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>stddef.h<td>&#160;<td>B.18 Common definitions
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>stddef.h<td>&#160;<td>B.18 Common definitions
 <tr><td>&#160;<td>&#160;<td>t t <td>wchar_t<td>stddef.h<td>&#160;<td>B.18 Common definitions
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n13">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n15">d</a> <td>offsetof<td>stddef.h<td>offsetof(type, member-designator)<td>B.18 Common definitions
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n66">d</a> <td>INT_LEAST32_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n67">d</a> <td>INT_LEAST64_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>SIG_ATOMIC_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n29">t</a> <td>int_least8_t<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n30">t</a> <td>int_least16_t<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n31">t</a> <td>int_least32_t<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n32">t</a> <td>int_least64_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n32">t</a> <td>int_least8_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n33">t</a> <td>int_least16_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n34">t</a> <td>int_least32_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n35">t</a> <td>int_least64_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n69">d</a> <td>UINT_LEAST8_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n70">d</a> <td>UINT_LEAST16_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n71">d</a> <td>UINT_LEAST32_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n72">d</a> <td>UINT_LEAST64_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>SIG_ATOMIC_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n34">t</a> <td>uint_least8_t<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n35">t</a> <td>uint_least16_t<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n36">t</a> <td>uint_least32_t<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n37">t</a> <td>uint_least64_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n37">t</a> <td>uint_least8_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n38">t</a> <td>uint_least16_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n39">t</a> <td>uint_least32_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n40">t</a> <td>uint_least64_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST8_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST16_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST32_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST16_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST32_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST64_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n83">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n86">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <td>WCHAR_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uint_fast8_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uint_fast16_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uint_fast32_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINT_FAST16_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINT_FAST32_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINT_FAST64_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n82">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n85">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n28">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <td>WCHAR_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>intptr_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INTPTR_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n78">d</a> <td>WINT_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uintptr_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INTPTR_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n79">d</a> <td>WINT_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n39">t</a> <td>intmax_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td>t <td>intmax_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINTPTR_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n88">d</a> <td>INT8_C<td>stdint.h<td>INT8_C(value)<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n89">d</a> <td>INT16_C<td>stdint.h<td>INT16_C(value)<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n90">d</a> <td>INT32_C<td>stdint.h<td>INT32_C(value)<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n91">d</a> <td>INT64_C<td>stdint.h<td>INT64_C(value)<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n40">t</a> <td>uintmax_t<td>stdint.h<td>&#160;<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n95">d</a> <td>INT8_C<td>stdint.h<td>INT8_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n96">d</a> <td>INT16_C<td>stdint.h<td>INT16_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n97">d</a> <td>INT32_C<td>stdint.h<td>INT32_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n104">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n109">d</a> <td>INT64_C<td>stdint.h<td>INT64_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td>t <td>uintmax_t<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n74">d</a> <td>INTMAX_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n93">d</a> <td>UINT8_C<td>stdint.h<td>UINT8_C(value)<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n94">d</a> <td>UINT16_C<td>stdint.h<td>UINT16_C(value)<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n95">d</a> <td>UINT32_C<td>stdint.h<td>UINT32_C(value)<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n96">d</a> <td>UINT64_C<td>stdint.h<td>UINT64_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n99">d</a> <td>UINT8_C<td>stdint.h<td>UINT8_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n100">d</a> <td>UINT16_C<td>stdint.h<td>UINT16_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n101">d</a> <td>UINT32_C<td>stdint.h<td>UINT32_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n105">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n110">d</a> <td>UINT64_C<td>stdint.h<td>UINT64_C(value)<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n44">d</a> <td>INT8_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n45">d</a> <td>INT16_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n46">d</a> <td>INT32_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n47">d</a> <td>INT64_MIN<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n75">d</a> <td>INTMAX_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n98">d</a> <td>INTMAX_C<td>stdint.h<td>INTMAX_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n106">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n111">d</a> <td>INTMAX_C<td>stdint.h<td>INTMAX_C(value)<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n49">d</a> <td>INT8_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n50">d</a> <td>INT16_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n51">d</a> <td>INT32_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n52">d</a> <td>INT64_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n76">d</a> <td>UINTMAX_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n99">d</a> <td>UINTMAX_C<td>stdint.h<td>UINTMAX_C(value)<td>B.19 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n107">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n112">d</a> <td>UINTMAX_C<td>stdint.h<td>UINTMAX_C(value)<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n54">d</a> <td>UINT8_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n55">d</a> <td>UINT16_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n56">d</a> <td>UINT32_MAX<td>stdint.h<td>&#160;<td>B.19 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n39">d</a> <td>BUFSIZ<td>stdio.h<td>&#160;<td>B.20 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n71">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n74">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n29">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n32">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n15">d</a> <td>SEEK_CUR<td>stdio.h<td>&#160;<td>B.20 Input/output
 <tr><td>&#160;<td>R<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n54">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n50">x</a> <td>stdin<td>stdio.h<td>&#160;<td>B.20 Input/output
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>stdio.h<td>&#160;<td>B.20 Input/output
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>stdio.h<td>&#160;<td>B.20 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n25">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n26">d</a> <td>EOF<td>stdio.h<td>&#160;<td>B.20 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n72">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n75">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n30">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n33">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n16">d</a> <td>SEEK_END<td>stdio.h<td>&#160;<td>B.20 Input/output
 <tr><td>&#160;<td>R<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n55">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n51">x</a> <td>stdout<td>stdio.h<td>&#160;<td>B.20 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n60">t</a> <td>lldiv_t<td>stdlib.h<td>&#160;<td>B.21 General utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n73">d</a> <td>EXIT_SUCCESS<td>stdlib.h<td>&#160;<td>B.21 General utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n58">t</a> <td>div_t<td>stdlib.h<td>&#160;<td>B.21 General utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>stdlib.h<td>&#160;<td>B.21 General utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>stdlib.h<td>&#160;<td>B.21 General utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n77">d</a> <td>RAND_MAX<td>stdlib.h<td>&#160;<td>B.21 General utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n20">p</a> <td>atof<td>stdlib.h<td>double atof(const char *nptr);<td>B.21 General utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n17">p</a> <td>atoi<td>stdlib.h<td>int atoi(const char *nptr);<td>B.21 General utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n70">p</a> <td>wcstombs<td>stdlib.h<td>size_t wcstombs(char * restrict s, const wchar_t * restrict pwcs, size_t n);<td>B.21 General utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdnoreturn.h#n4">d</a> <td>noreturn<td>stdnoreturn.h<td>&#160;<td>B.22 _Noreturn
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>string.h<td>&#160;<td>B.23 String handling
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>string.h<td>&#160;<td>B.23 String handling
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>string.h<td>&#160;<td>B.23 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n21">p</a> <td>memcpy<td>string.h<td>void *memcpy(void * restrict s1, const void * restrict s2, size_t n);<td>B.23 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n22">p</a> <td>memmove<td>string.h<td>void *memmove(void *s1, const void *s2, size_t n);<td>B.23 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n27">p</a> <td>strcpy<td>string.h<td>char *strcpy(char * restrict s1, const char * restrict s2);<td>B.23 String handling
 <tr><td>missing<td>&#160;<td>&#160;<td>tss_delete<td>threads.h<td>void tss_delete(tss_t key);<td>B.25 Threads
 <tr><td>missing<td>&#160;<td>&#160;<td>tss_get<td>threads.h<td>void *tss_get(tss_t key);<td>B.25 Threads
 <tr><td>missing<td>&#160;<td>&#160;<td>tss_set<td>threads.h<td>int tss_set(tss_t key, void *val);<td>B.25 Threads
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>time.h<td>&#160;<td>B.26 Date and time
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>time.h<td>&#160;<td>B.26 Date and time
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>time.h<td>&#160;<td>B.26 Date and time
 <tr><td>&#160;<td>&#160;<td>s <td>struct timespec<td>time.h<td>&#160;<td>B.26 Date and time
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n57">d</a> <td>CLOCKS_PER_SEC<td>time.h<td>&#160;<td>B.26 Date and time
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n52">p</a> <td>gmtime<td>time.h<td>struct tm *gmtime(const time_t *timer);<td>B.26 Date and time
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n53">p</a> <td>localtime<td>time.h<td>struct tm *localtime(const time_t *timer);<td>B.26 Date and time
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n51">p</a> <td>strftime<td>time.h<td>size_t strftime(char * restrict s, size_t maxsize, const char * restrict format, const struct tm * restrict timeptr);<td>B.26 Date and time
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n37">t</a> <td>mbstate_t<td>uchar.h<td>&#160;<td>B.27 Unicode utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n43">t</a> <td>mbstate_t<td>uchar.h<td>&#160;<td>B.27 Unicode utilities
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>uchar.h<td>&#160;<td>B.27 Unicode utilities
 <tr><td>missing<td>&#160;<td>&#160;<td>char16_t<td>uchar.h<td>&#160;<td>B.27 Unicode utilities
 <tr><td>missing<td>&#160;<td>&#160;<td>char32_t<td>uchar.h<td>&#160;<td>B.27 Unicode utilities
 <tr><td>missing<td>&#160;<td>&#160;<td>c32rtomb<td>uchar.h<td>size_t c32rtomb(char * restrict s, char32_t c32, mbstate_t * restrict ps);<td>B.27 Unicode utilities
 <tr><td>&#160;<td>&#160;<td>t t <td>wchar_t<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wint_t<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MAX<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n82">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n85">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n28">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <td>WCHAR_MAX<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n28">s</a> <td>struct tm<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MIN<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n37">t</a> <td>mbstate_t<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n99">p</a> <td>fwprintf<td>wchar.h<td>int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n107">p</a> <td>fwscanf<td>wchar.h<td>int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n100">p</a> <td>swprintf<td>wchar.h<td>int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n108">p</a> <td>swscanf<td>wchar.h<td>int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n103">p</a> <td>vfwprintf<td>wchar.h<td>int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n111">p</a> <td>vfwscanf<td>wchar.h<td>int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n104">p</a> <td>vswprintf<td>wchar.h<td>int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n112">p</a> <td>vswscanf<td>wchar.h<td>int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n102">p</a> <td>vwprintf<td>wchar.h<td>int vwprintf(const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n110">p</a> <td>vwscanf<td>wchar.h<td>int vwscanf(const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n98">p</a> <td>wprintf<td>wchar.h<td>int wprintf(const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n106">p</a> <td>wscanf<td>wchar.h<td>int wscanf(const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n114">p</a> <td>fgetwc<td>wchar.h<td>wint_t fgetwc(FILE *stream);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n122">p</a> <td>fgetws<td>wchar.h<td>wchar_t *fgetws(wchar_t * restrict s, int n, FILE * restrict stream);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n118">p</a> <td>fputwc<td>wchar.h<td>wint_t fputwc(wchar_t c, FILE *stream);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n123">p</a> <td>fputws<td>wchar.h<td>int fputws(const wchar_t * restrict s, FILE * restrict stream);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n95">p</a> <td>fwide<td>wchar.h<td>int fwide(FILE *stream, int mode);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n115">p</a> <td>getwc<td>wchar.h<td>wint_t getwc(FILE *stream);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n116">p</a> <td>getwchar<td>wchar.h<td>wint_t getwchar(void);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n119">p</a> <td>putwc<td>wchar.h<td>wint_t putwc(wchar_t c, FILE *stream);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n120">p</a> <td>putwchar<td>wchar.h<td>wint_t putwchar(wchar_t c);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n125">p</a> <td>ungetwc<td>wchar.h<td>wint_t ungetwc(wint_t c, FILE *stream);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n84">p</a> <td>wcstod<td>wchar.h<td>double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n83">p</a> <td>wcstof<td>wchar.h<td>float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n85">p</a> <td>wcstold<td>wchar.h<td>long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n87">p</a> <td>wcstol<td>wchar.h<td>long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n90">p</a> <td>wcstoll<td>wchar.h<td>long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n88">p</a> <td>wcstoul<td>wchar.h<td>unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n91">p</a> <td>wcstoull<td>wchar.h<td>unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n39">p</a> <td>wcscpy<td>wchar.h<td>wchar_t *wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n40">p</a> <td>wcsncpy<td>wchar.h<td>wchar_t *wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n67">p</a> <td>wmemcpy<td>wchar.h<td>wchar_t *wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n68">p</a> <td>wmemmove<td>wchar.h<td>wchar_t *wmemmove(wchar_t *s1, const wchar_t *s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n42">p</a> <td>wcscat<td>wchar.h<td>wchar_t *wcscat(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n43">p</a> <td>wcsncat<td>wchar.h<td>wchar_t *wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n45">p</a> <td>wcscmp<td>wchar.h<td>int wcscmp(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n48">p</a> <td>wcscoll<td>wchar.h<td>int wcscoll(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n46">p</a> <td>wcsncmp<td>wchar.h<td>int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n49">p</a> <td>wcsxfrm<td>wchar.h<td>size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n66">p</a> <td>wmemcmp<td>wchar.h<td>int wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n51">p</a> <td>wcschr<td>wchar.h<td>wchar_t *wcschr(const wchar_t *s, wchar_t c);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n54">p</a> <td>wcscspn<td>wchar.h<td>size_t wcscspn(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n56">p</a> <td>wcspbrk<td>wchar.h<td>wchar_t *wcspbrk(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n52">p</a> <td>wcsrchr<td>wchar.h<td>wchar_t *wcsrchr(const wchar_t *s, wchar_t c);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n55">p</a> <td>wcsspn<td>wchar.h<td>size_t wcsspn(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n62">p</a> <td>wcsstr<td>wchar.h<td>wchar_t *wcsstr(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n58">p</a> <td>wcstok<td>wchar.h<td>wchar_t *wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n65">p</a> <td>wmemchr<td>wchar.h<td>wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n60">p</a> <td>wcslen<td>wchar.h<td>size_t wcslen(const wchar_t *s);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n69">p</a> <td>wmemset<td>wchar.h<td>wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n128">p</a> <td>wcsftime<td>wchar.h<td>size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n71">p</a> <td>btowc<td>wchar.h<td>wint_t btowc(int c);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n72">p</a> <td>wctob<td>wchar.h<td>int wctob(wint_t c);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n74">p</a> <td>mbsinit<td>wchar.h<td>int mbsinit(const mbstate_t *ps);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n78">p</a> <td>mbrlen<td>wchar.h<td>size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n75">p</a> <td>mbrtowc<td>wchar.h<td>size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n76">p</a> <td>wcrtomb<td>wchar.h<td>size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n80">p</a> <td>mbsrtowcs<td>wchar.h<td>size_t mbsrtowcs(wchar_t * restrict dst, const char ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n81">p</a> <td>wcsrtombs<td>wchar.h<td>size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n83">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n86">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <td>WCHAR_MIN<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n43">t</a> <td>mbstate_t<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n37">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n38">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wchar.h<td>&#160;<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n105">p</a> <td>fwprintf<td>wchar.h<td>int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n113">p</a> <td>fwscanf<td>wchar.h<td>int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n106">p</a> <td>swprintf<td>wchar.h<td>int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n114">p</a> <td>swscanf<td>wchar.h<td>int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n109">p</a> <td>vfwprintf<td>wchar.h<td>int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n117">p</a> <td>vfwscanf<td>wchar.h<td>int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n110">p</a> <td>vswprintf<td>wchar.h<td>int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n118">p</a> <td>vswscanf<td>wchar.h<td>int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n108">p</a> <td>vwprintf<td>wchar.h<td>int vwprintf(const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n116">p</a> <td>vwscanf<td>wchar.h<td>int vwscanf(const wchar_t * restrict format, va_list arg);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n104">p</a> <td>wprintf<td>wchar.h<td>int wprintf(const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n112">p</a> <td>wscanf<td>wchar.h<td>int wscanf(const wchar_t * restrict format, ...);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n120">p</a> <td>fgetwc<td>wchar.h<td>wint_t fgetwc(FILE *stream);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n128">p</a> <td>fgetws<td>wchar.h<td>wchar_t *fgetws(wchar_t * restrict s, int n, FILE * restrict stream);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n124">p</a> <td>fputwc<td>wchar.h<td>wint_t fputwc(wchar_t c, FILE *stream);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n129">p</a> <td>fputws<td>wchar.h<td>int fputws(const wchar_t * restrict s, FILE * restrict stream);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n101">p</a> <td>fwide<td>wchar.h<td>int fwide(FILE *stream, int mode);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n121">p</a> <td>getwc<td>wchar.h<td>wint_t getwc(FILE *stream);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n122">p</a> <td>getwchar<td>wchar.h<td>wint_t getwchar(void);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n125">p</a> <td>putwc<td>wchar.h<td>wint_t putwc(wchar_t c, FILE *stream);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n126">p</a> <td>putwchar<td>wchar.h<td>wint_t putwchar(wchar_t c);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n131">p</a> <td>ungetwc<td>wchar.h<td>wint_t ungetwc(wint_t c, FILE *stream);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n90">p</a> <td>wcstod<td>wchar.h<td>double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n89">p</a> <td>wcstof<td>wchar.h<td>float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n91">p</a> <td>wcstold<td>wchar.h<td>long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n93">p</a> <td>wcstol<td>wchar.h<td>long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n96">p</a> <td>wcstoll<td>wchar.h<td>long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n94">p</a> <td>wcstoul<td>wchar.h<td>unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n97">p</a> <td>wcstoull<td>wchar.h<td>unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n45">p</a> <td>wcscpy<td>wchar.h<td>wchar_t *wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n46">p</a> <td>wcsncpy<td>wchar.h<td>wchar_t *wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n73">p</a> <td>wmemcpy<td>wchar.h<td>wchar_t *wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n74">p</a> <td>wmemmove<td>wchar.h<td>wchar_t *wmemmove(wchar_t *s1, const wchar_t *s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n48">p</a> <td>wcscat<td>wchar.h<td>wchar_t *wcscat(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n49">p</a> <td>wcsncat<td>wchar.h<td>wchar_t *wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n51">p</a> <td>wcscmp<td>wchar.h<td>int wcscmp(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n54">p</a> <td>wcscoll<td>wchar.h<td>int wcscoll(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n52">p</a> <td>wcsncmp<td>wchar.h<td>int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n55">p</a> <td>wcsxfrm<td>wchar.h<td>size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n72">p</a> <td>wmemcmp<td>wchar.h<td>int wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n57">p</a> <td>wcschr<td>wchar.h<td>wchar_t *wcschr(const wchar_t *s, wchar_t c);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n60">p</a> <td>wcscspn<td>wchar.h<td>size_t wcscspn(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n62">p</a> <td>wcspbrk<td>wchar.h<td>wchar_t *wcspbrk(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n58">p</a> <td>wcsrchr<td>wchar.h<td>wchar_t *wcsrchr(const wchar_t *s, wchar_t c);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n61">p</a> <td>wcsspn<td>wchar.h<td>size_t wcsspn(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n68">p</a> <td>wcsstr<td>wchar.h<td>wchar_t *wcsstr(const wchar_t *s1, const wchar_t *s2);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n64">p</a> <td>wcstok<td>wchar.h<td>wchar_t *wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n71">p</a> <td>wmemchr<td>wchar.h<td>wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n66">p</a> <td>wcslen<td>wchar.h<td>size_t wcslen(const wchar_t *s);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n75">p</a> <td>wmemset<td>wchar.h<td>wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n134">p</a> <td>wcsftime<td>wchar.h<td>size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n77">p</a> <td>btowc<td>wchar.h<td>wint_t btowc(int c);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n78">p</a> <td>wctob<td>wchar.h<td>int wctob(wint_t c);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n80">p</a> <td>mbsinit<td>wchar.h<td>int mbsinit(const mbstate_t *ps);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n84">p</a> <td>mbrlen<td>wchar.h<td>size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n81">p</a> <td>mbrtowc<td>wchar.h<td>size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n82">p</a> <td>wcrtomb<td>wchar.h<td>size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n86">p</a> <td>mbsrtowcs<td>wchar.h<td>size_t mbsrtowcs(wchar_t * restrict dst, const char ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n87">p</a> <td>wcsrtombs<td>wchar.h<td>size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.28 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wint_t<td>wctype.h<td>&#160;<td>B.29 Wide character classification and mapping utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wctrans_t<td>wctype.h<td>&#160;<td>B.29 Wide character classification and mapping utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wctype_t<td>wctype.h<td>&#160;<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wctype.h<td>&#160;<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n152">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n26">p</a> <td>iswalnum<td>wctype.h<td>int iswalnum(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n153">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n27">p</a> <td>iswalpha<td>wctype.h<td>int iswalpha(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n154">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n28">p</a> <td>iswblank<td>wctype.h<td>int iswblank(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n155">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n29">p</a> <td>iswcntrl<td>wctype.h<td>int iswcntrl(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n130">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n168">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n169">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n156">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n24">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n45">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n46">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n30">p</a> <td>iswdigit<td>wctype.h<td>int iswdigit(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n157">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n31">p</a> <td>iswgraph<td>wctype.h<td>int iswgraph(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n158">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n32">p</a> <td>iswlower<td>wctype.h<td>int iswlower(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n159">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n33">p</a> <td>iswprint<td>wctype.h<td>int iswprint(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n160">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n34">p</a> <td>iswpunct<td>wctype.h<td>int iswpunct(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n161">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n35">p</a> <td>iswspace<td>wctype.h<td>int iswspace(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n162">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n36">p</a> <td>iswupper<td>wctype.h<td>int iswupper(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n163">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n37">p</a> <td>iswxdigit<td>wctype.h<td>int iswxdigit(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n164">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n38">p</a> <td>iswctype<td>wctype.h<td>int iswctype(wint_t wc, wctype_t desc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n167">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n43">p</a> <td>wctype<td>wctype.h<td>wctype_t wctype(const char *property);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n165">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n40">p</a> <td>towlower<td>wctype.h<td>wint_t towlower(wint_t wc);<td>B.29 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n166">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n41">p</a> <td>towupper<td>wctype.h<td>wint_t towupper(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n37">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n38">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wctype.h<td>&#160;<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n158">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n26">p</a> <td>iswalnum<td>wctype.h<td>int iswalnum(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n159">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n27">p</a> <td>iswalpha<td>wctype.h<td>int iswalpha(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n160">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n28">p</a> <td>iswblank<td>wctype.h<td>int iswblank(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n161">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n29">p</a> <td>iswcntrl<td>wctype.h<td>int iswcntrl(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n136">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n174">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n175">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n162">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n24">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n45">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n46">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n30">p</a> <td>iswdigit<td>wctype.h<td>int iswdigit(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n163">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n31">p</a> <td>iswgraph<td>wctype.h<td>int iswgraph(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n164">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n32">p</a> <td>iswlower<td>wctype.h<td>int iswlower(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n165">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n33">p</a> <td>iswprint<td>wctype.h<td>int iswprint(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n166">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n34">p</a> <td>iswpunct<td>wctype.h<td>int iswpunct(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n167">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n35">p</a> <td>iswspace<td>wctype.h<td>int iswspace(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n168">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n36">p</a> <td>iswupper<td>wctype.h<td>int iswupper(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n169">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n37">p</a> <td>iswxdigit<td>wctype.h<td>int iswxdigit(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n170">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n38">p</a> <td>iswctype<td>wctype.h<td>int iswctype(wint_t wc, wctype_t desc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n173">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n43">p</a> <td>wctype<td>wctype.h<td>wctype_t wctype(const char *property);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n171">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n40">p</a> <td>towlower<td>wctype.h<td>wint_t towlower(wint_t wc);<td>B.29 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n172">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n41">p</a> <td>towupper<td>wctype.h<td>wint_t towupper(wint_t wc);<td>B.29 Wide character classification and mapping utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n39">p</a> <td>towctrans<td>wctype.h<td>wint_t towctrans(wint_t wc, wctrans_t desc);<td>B.29 Wide character classification and mapping utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n42">p</a> <td>wctrans<td>wctype.h<td>wctrans_t wctrans(const char *property);<td>B.29 Wide character classification and mapping utilities
 </table>
index 7e20fa2..958ff31 100644 (file)
@@ -1,5 +1,5 @@
 <h3>musl vs c99 api</h3>
-<h4>commit</h4><p>commit <a href="http://git.musl-libc.org/cgit/musl/commit/?id=a57ac9bf64ba202bd94d1b81bddd93b850c7b9d6">a57ac9bf64ba202bd94d1b81bddd93b850c7b9d6</a><br>Date:   Fri Feb 1 01:49:07 2013 -0500<br><br>    release notes for 0.9.9
+<h4>commit</h4><p>commit <a href="http://git.musl-libc.org/cgit/musl/commit/?id=4ba3ebdcfeb7b5aa2dd5079e939514a634395124">4ba3ebdcfeb7b5aa2dd5079e939514a634395124</a><br>Date:   Wed Apr 10 22:38:46 2013 -0400<br><br>    make ifaddrs.h expose sys/socket.h<br>    <br>    the getifaddrs interface seems to have been invented by glibc, and<br>    they expose socket.h, so for us not to do so is just gratuitous<br>    incompatibility with the interface we're mimicing.
 <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>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/assert.h#n3">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/assert.h#n6">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/assert.h#n8">d</a> <td>assert<td>assert.h<td>void assert(scalar expression);<td>B.1 Diagnostics
@@ -91,7 +91,7 @@
 <tr><td>&#160;<td>&#160;<td>d <td>EDOM<td>errno.h<td>&#160;<td>B.4 Errors
 <tr><td>&#160;<td>&#160;<td>d <td>EILSEQ<td>errno.h<td>&#160;<td>B.4 Errors
 <tr><td>&#160;<td>&#160;<td>d <td>ERANGE<td>errno.h<td>&#160;<td>B.4 Errors
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/errno.h#n14">d</a> <td>errno<td>errno.h<td>&#160;<td>B.4 Errors
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/errno.h#n16">d</a> <td>errno<td>errno.h<td>&#160;<td>B.4 Errors
 <tr><td>&#160;<td>&#160;<td>t <td>fenv_t<td>fenv.h<td>&#160;<td>B.5 Floating-point environment
 <tr><td>&#160;<td>&#160;<td>d <td>FE_OVERFLOW<td>fenv.h<td>&#160;<td>B.5 Floating-point environment
 <tr><td>&#160;<td>&#160;<td>d <td>FE_TOWARDZERO<td>fenv.h<td>&#160;<td>B.5 Floating-point environment
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n18">d</a> <td>LC_ALL<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n12">d</a> <td>LC_CTYPE<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n13">d</a> <td>LC_NUMERIC<td>locale.h<td>&#160;<td>B.10 Localization
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>locale.h<td>&#160;<td>B.10 Localization
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n15">d</a> <td>LC_COLLATE<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n16">d</a> <td>LC_MONETARY<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n14">d</a> <td>LC_TIME<td>locale.h<td>&#160;<td>B.10 Localization
 <tr><td>&#160;<td>&#160;<td>t <td>ptrdiff_t<td>stddef.h<td>&#160;<td>B.16 Common definitions
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>stddef.h<td>&#160;<td>B.16 Common definitions
 <tr><td>&#160;<td>&#160;<td>t t <td>wchar_t<td>stddef.h<td>&#160;<td>B.16 Common definitions
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>stddef.h<td>&#160;<td>B.16 Common definitions
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>stddef.h<td>&#160;<td>B.16 Common definitions
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n13">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n15">d</a> <td>offsetof<td>stddef.h<td>offsetof(type, member-designator)<td>B.16 Common definitions
 <tr><td>&#160;<td>&#160;<td>t <td>int8_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>int16_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n66">d</a> <td>INT_LEAST32_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n67">d</a> <td>INT_LEAST64_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>SIG_ATOMIC_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n29">t</a> <td>int_least8_t<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n30">t</a> <td>int_least16_t<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n31">t</a> <td>int_least32_t<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n32">t</a> <td>int_least64_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n32">t</a> <td>int_least8_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n33">t</a> <td>int_least16_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n34">t</a> <td>int_least32_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n35">t</a> <td>int_least64_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n69">d</a> <td>UINT_LEAST8_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n70">d</a> <td>UINT_LEAST16_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n71">d</a> <td>UINT_LEAST32_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n72">d</a> <td>UINT_LEAST64_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>SIG_ATOMIC_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n34">t</a> <td>uint_least8_t<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n35">t</a> <td>uint_least16_t<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n36">t</a> <td>uint_least32_t<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n37">t</a> <td>uint_least64_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n37">t</a> <td>uint_least8_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n38">t</a> <td>uint_least16_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n39">t</a> <td>uint_least32_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n40">t</a> <td>uint_least64_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST8_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST16_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST32_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST16_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST32_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INT_FAST64_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n83">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n86">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <td>WCHAR_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uint_fast8_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uint_fast16_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uint_fast32_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINT_FAST16_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINT_FAST32_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINT_FAST64_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n82">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n85">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n28">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <td>WCHAR_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>intptr_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INTPTR_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n78">d</a> <td>WINT_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>t <td>uintptr_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>INTPTR_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n79">d</a> <td>WINT_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n39">t</a> <td>intmax_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td>t <td>intmax_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td>d <td>UINTPTR_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n88">d</a> <td>INT8_C<td>stdint.h<td>INT8_C(value)<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n89">d</a> <td>INT16_C<td>stdint.h<td>INT16_C(value)<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n90">d</a> <td>INT32_C<td>stdint.h<td>INT32_C(value)<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n91">d</a> <td>INT64_C<td>stdint.h<td>INT64_C(value)<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n40">t</a> <td>uintmax_t<td>stdint.h<td>&#160;<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n95">d</a> <td>INT8_C<td>stdint.h<td>INT8_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n96">d</a> <td>INT16_C<td>stdint.h<td>INT16_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n97">d</a> <td>INT32_C<td>stdint.h<td>INT32_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n104">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n109">d</a> <td>INT64_C<td>stdint.h<td>INT64_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td>t <td>uintmax_t<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n74">d</a> <td>INTMAX_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n93">d</a> <td>UINT8_C<td>stdint.h<td>UINT8_C(value)<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n94">d</a> <td>UINT16_C<td>stdint.h<td>UINT16_C(value)<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n95">d</a> <td>UINT32_C<td>stdint.h<td>UINT32_C(value)<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n96">d</a> <td>UINT64_C<td>stdint.h<td>UINT64_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n99">d</a> <td>UINT8_C<td>stdint.h<td>UINT8_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n100">d</a> <td>UINT16_C<td>stdint.h<td>UINT16_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n101">d</a> <td>UINT32_C<td>stdint.h<td>UINT32_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n105">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n110">d</a> <td>UINT64_C<td>stdint.h<td>UINT64_C(value)<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n44">d</a> <td>INT8_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n45">d</a> <td>INT16_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n46">d</a> <td>INT32_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n47">d</a> <td>INT64_MIN<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n75">d</a> <td>INTMAX_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n98">d</a> <td>INTMAX_C<td>stdint.h<td>INTMAX_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n106">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n111">d</a> <td>INTMAX_C<td>stdint.h<td>INTMAX_C(value)<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n49">d</a> <td>INT8_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n50">d</a> <td>INT16_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n51">d</a> <td>INT32_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n52">d</a> <td>INT64_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n76">d</a> <td>UINTMAX_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n99">d</a> <td>UINTMAX_C<td>stdint.h<td>UINTMAX_C(value)<td>B.17 Integer types
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n107">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n112">d</a> <td>UINTMAX_C<td>stdint.h<td>UINTMAX_C(value)<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n54">d</a> <td>UINT8_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n55">d</a> <td>UINT16_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n56">d</a> <td>UINT32_MAX<td>stdint.h<td>&#160;<td>B.17 Integer types
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n39">d</a> <td>BUFSIZ<td>stdio.h<td>&#160;<td>B.18 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n71">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n74">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n29">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n32">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n15">d</a> <td>SEEK_CUR<td>stdio.h<td>&#160;<td>B.18 Input/output
 <tr><td>&#160;<td>R<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n54">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n50">x</a> <td>stdin<td>stdio.h<td>&#160;<td>B.18 Input/output
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>stdio.h<td>&#160;<td>B.18 Input/output
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>stdio.h<td>&#160;<td>B.18 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n25">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n26">d</a> <td>EOF<td>stdio.h<td>&#160;<td>B.18 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n72">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n75">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n30">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n33">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n16">d</a> <td>SEEK_END<td>stdio.h<td>&#160;<td>B.18 Input/output
 <tr><td>&#160;<td>R<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n55">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n51">x</a> <td>stdout<td>stdio.h<td>&#160;<td>B.18 Input/output
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n60">t</a> <td>lldiv_t<td>stdlib.h<td>&#160;<td>B.19 General utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n73">d</a> <td>EXIT_SUCCESS<td>stdlib.h<td>&#160;<td>B.19 General utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n58">t</a> <td>div_t<td>stdlib.h<td>&#160;<td>B.19 General utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>stdlib.h<td>&#160;<td>B.19 General utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>stdlib.h<td>&#160;<td>B.19 General utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n77">d</a> <td>RAND_MAX<td>stdlib.h<td>&#160;<td>B.19 General utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n20">p</a> <td>atof<td>stdlib.h<td>double atof(const char *nptr);<td>B.19 General utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n17">p</a> <td>atoi<td>stdlib.h<td>int atoi(const char *nptr);<td>B.19 General utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n69">p</a> <td>mbstowcs<td>stdlib.h<td>size_t mbstowcs(wchar_t * restrict pwcs, const char * restrict s, size_t n);<td>B.19 General utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n70">p</a> <td>wcstombs<td>stdlib.h<td>size_t wcstombs(char * restrict s, const wchar_t * restrict pwcs, size_t n);<td>B.19 General utilities
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>string.h<td>&#160;<td>B.20 String handling
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>string.h<td>&#160;<td>B.20 String handling
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>string.h<td>&#160;<td>B.20 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n21">p</a> <td>memcpy<td>string.h<td>void *memcpy(void * restrict s1, const void * restrict s2, size_t n);<td>B.20 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n22">p</a> <td>memmove<td>string.h<td>void *memmove(void *s1, const void *s2, size_t n);<td>B.20 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n27">p</a> <td>strcpy<td>string.h<td>char *strcpy(char * restrict s1, const char * restrict s2);<td>B.20 String handling
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n207">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n173">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n236">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.musl-libc.org/cgit/musl/tree/include/math.h#n279">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n189">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n252">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.musl-libc.org/cgit/musl/tree/include/complex.h#n107">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n100">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n162">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n225">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.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>time.h<td>&#160;<td>B.22 Date and time
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">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>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n57">d</a> <td>CLOCKS_PER_SEC<td>time.h<td>&#160;<td>B.22 Date and time
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n51">p</a> <td>strftime<td>time.h<td>size_t strftime(char * restrict s, size_t maxsize, const char * restrict format, const struct tm * restrict timeptr);<td>B.22 Date and time
 <tr><td>&#160;<td>&#160;<td>t t <td>wchar_t<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wint_t<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MAX<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n82">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n85">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n28">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <td>WCHAR_MAX<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td>t <td>size_t<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n28">s</a> <td>struct tm<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td>d <td>WCHAR_MIN<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n37">t</a> <td>mbstate_t<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <td>NULL<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n99">p</a> <td>fwprintf<td>wchar.h<td>int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n107">p</a> <td>fwscanf<td>wchar.h<td>int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n100">p</a> <td>swprintf<td>wchar.h<td>int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n108">p</a> <td>swscanf<td>wchar.h<td>int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n103">p</a> <td>vfwprintf<td>wchar.h<td>int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n111">p</a> <td>vfwscanf<td>wchar.h<td>int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n104">p</a> <td>vswprintf<td>wchar.h<td>int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n112">p</a> <td>vswscanf<td>wchar.h<td>int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n102">p</a> <td>vwprintf<td>wchar.h<td>int vwprintf(const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n110">p</a> <td>vwscanf<td>wchar.h<td>int vwscanf(const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n98">p</a> <td>wprintf<td>wchar.h<td>int wprintf(const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n106">p</a> <td>wscanf<td>wchar.h<td>int wscanf(const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n114">p</a> <td>fgetwc<td>wchar.h<td>wint_t fgetwc(FILE *stream);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n122">p</a> <td>fgetws<td>wchar.h<td>wchar_t *fgetws(wchar_t * restrict s, int n, FILE * restrict stream);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n118">p</a> <td>fputwc<td>wchar.h<td>wint_t fputwc(wchar_t c, FILE *stream);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n123">p</a> <td>fputws<td>wchar.h<td>int fputws(const wchar_t * restrict s, FILE * restrict stream);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n95">p</a> <td>fwide<td>wchar.h<td>int fwide(FILE *stream, int mode);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n115">p</a> <td>getwc<td>wchar.h<td>wint_t getwc(FILE *stream);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n116">p</a> <td>getwchar<td>wchar.h<td>wint_t getwchar(void);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n119">p</a> <td>putwc<td>wchar.h<td>wint_t putwc(wchar_t c, FILE *stream);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n120">p</a> <td>putwchar<td>wchar.h<td>wint_t putwchar(wchar_t c);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n125">p</a> <td>ungetwc<td>wchar.h<td>wint_t ungetwc(wint_t c, FILE *stream);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n84">p</a> <td>wcstod<td>wchar.h<td>double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n83">p</a> <td>wcstof<td>wchar.h<td>float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n85">p</a> <td>wcstold<td>wchar.h<td>long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n87">p</a> <td>wcstol<td>wchar.h<td>long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n90">p</a> <td>wcstoll<td>wchar.h<td>long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n88">p</a> <td>wcstoul<td>wchar.h<td>unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n91">p</a> <td>wcstoull<td>wchar.h<td>unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n39">p</a> <td>wcscpy<td>wchar.h<td>wchar_t *wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n40">p</a> <td>wcsncpy<td>wchar.h<td>wchar_t *wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n67">p</a> <td>wmemcpy<td>wchar.h<td>wchar_t *wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n68">p</a> <td>wmemmove<td>wchar.h<td>wchar_t *wmemmove(wchar_t *s1, const wchar_t *s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n42">p</a> <td>wcscat<td>wchar.h<td>wchar_t *wcscat(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n43">p</a> <td>wcsncat<td>wchar.h<td>wchar_t *wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n45">p</a> <td>wcscmp<td>wchar.h<td>int wcscmp(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n48">p</a> <td>wcscoll<td>wchar.h<td>int wcscoll(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n46">p</a> <td>wcsncmp<td>wchar.h<td>int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n49">p</a> <td>wcsxfrm<td>wchar.h<td>size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n66">p</a> <td>wmemcmp<td>wchar.h<td>int wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n51">p</a> <td>wcschr<td>wchar.h<td>wchar_t *wcschr(const wchar_t *s, wchar_t c);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n54">p</a> <td>wcscspn<td>wchar.h<td>size_t wcscspn(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n56">p</a> <td>wcspbrk<td>wchar.h<td>wchar_t *wcspbrk(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n52">p</a> <td>wcsrchr<td>wchar.h<td>wchar_t *wcsrchr(const wchar_t *s, wchar_t c);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n55">p</a> <td>wcsspn<td>wchar.h<td>size_t wcsspn(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n62">p</a> <td>wcsstr<td>wchar.h<td>wchar_t *wcsstr(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n58">p</a> <td>wcstok<td>wchar.h<td>wchar_t *wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n65">p</a> <td>wmemchr<td>wchar.h<td>wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n60">p</a> <td>wcslen<td>wchar.h<td>size_t wcslen(const wchar_t *s);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n69">p</a> <td>wmemset<td>wchar.h<td>wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n128">p</a> <td>wcsftime<td>wchar.h<td>size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n71">p</a> <td>btowc<td>wchar.h<td>wint_t btowc(int c);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n72">p</a> <td>wctob<td>wchar.h<td>int wctob(wint_t c);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n74">p</a> <td>mbsinit<td>wchar.h<td>int mbsinit(const mbstate_t *ps);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n78">p</a> <td>mbrlen<td>wchar.h<td>size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n75">p</a> <td>mbrtowc<td>wchar.h<td>size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n76">p</a> <td>wcrtomb<td>wchar.h<td>size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n80">p</a> <td>mbsrtowcs<td>wchar.h<td>size_t mbsrtowcs(wchar_t * restrict dst, const char ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n81">p</a> <td>wcsrtombs<td>wchar.h<td>size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n83">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdint.h#n86">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n29">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <td>WCHAR_MIN<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n43">t</a> <td>mbstate_t<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stddef.h#n4">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n23">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n10">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n18">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n35">d</a> <td>NULL<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n37">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n38">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wchar.h<td>&#160;<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n105">p</a> <td>fwprintf<td>wchar.h<td>int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n113">p</a> <td>fwscanf<td>wchar.h<td>int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n106">p</a> <td>swprintf<td>wchar.h<td>int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n114">p</a> <td>swscanf<td>wchar.h<td>int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n109">p</a> <td>vfwprintf<td>wchar.h<td>int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n117">p</a> <td>vfwscanf<td>wchar.h<td>int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n110">p</a> <td>vswprintf<td>wchar.h<td>int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n118">p</a> <td>vswscanf<td>wchar.h<td>int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n108">p</a> <td>vwprintf<td>wchar.h<td>int vwprintf(const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n116">p</a> <td>vwscanf<td>wchar.h<td>int vwscanf(const wchar_t * restrict format, va_list arg);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n104">p</a> <td>wprintf<td>wchar.h<td>int wprintf(const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n112">p</a> <td>wscanf<td>wchar.h<td>int wscanf(const wchar_t * restrict format, ...);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n120">p</a> <td>fgetwc<td>wchar.h<td>wint_t fgetwc(FILE *stream);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n128">p</a> <td>fgetws<td>wchar.h<td>wchar_t *fgetws(wchar_t * restrict s, int n, FILE * restrict stream);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n124">p</a> <td>fputwc<td>wchar.h<td>wint_t fputwc(wchar_t c, FILE *stream);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n129">p</a> <td>fputws<td>wchar.h<td>int fputws(const wchar_t * restrict s, FILE * restrict stream);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n101">p</a> <td>fwide<td>wchar.h<td>int fwide(FILE *stream, int mode);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n121">p</a> <td>getwc<td>wchar.h<td>wint_t getwc(FILE *stream);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n122">p</a> <td>getwchar<td>wchar.h<td>wint_t getwchar(void);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n125">p</a> <td>putwc<td>wchar.h<td>wint_t putwc(wchar_t c, FILE *stream);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n126">p</a> <td>putwchar<td>wchar.h<td>wint_t putwchar(wchar_t c);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n131">p</a> <td>ungetwc<td>wchar.h<td>wint_t ungetwc(wint_t c, FILE *stream);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n90">p</a> <td>wcstod<td>wchar.h<td>double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n89">p</a> <td>wcstof<td>wchar.h<td>float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n91">p</a> <td>wcstold<td>wchar.h<td>long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n93">p</a> <td>wcstol<td>wchar.h<td>long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n96">p</a> <td>wcstoll<td>wchar.h<td>long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n94">p</a> <td>wcstoul<td>wchar.h<td>unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n97">p</a> <td>wcstoull<td>wchar.h<td>unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n45">p</a> <td>wcscpy<td>wchar.h<td>wchar_t *wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n46">p</a> <td>wcsncpy<td>wchar.h<td>wchar_t *wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n73">p</a> <td>wmemcpy<td>wchar.h<td>wchar_t *wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n74">p</a> <td>wmemmove<td>wchar.h<td>wchar_t *wmemmove(wchar_t *s1, const wchar_t *s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n48">p</a> <td>wcscat<td>wchar.h<td>wchar_t *wcscat(wchar_t * restrict s1, const wchar_t * restrict s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n49">p</a> <td>wcsncat<td>wchar.h<td>wchar_t *wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n51">p</a> <td>wcscmp<td>wchar.h<td>int wcscmp(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n54">p</a> <td>wcscoll<td>wchar.h<td>int wcscoll(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n52">p</a> <td>wcsncmp<td>wchar.h<td>int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n55">p</a> <td>wcsxfrm<td>wchar.h<td>size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n72">p</a> <td>wmemcmp<td>wchar.h<td>int wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n57">p</a> <td>wcschr<td>wchar.h<td>wchar_t *wcschr(const wchar_t *s, wchar_t c);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n60">p</a> <td>wcscspn<td>wchar.h<td>size_t wcscspn(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n62">p</a> <td>wcspbrk<td>wchar.h<td>wchar_t *wcspbrk(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n58">p</a> <td>wcsrchr<td>wchar.h<td>wchar_t *wcsrchr(const wchar_t *s, wchar_t c);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n61">p</a> <td>wcsspn<td>wchar.h<td>size_t wcsspn(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n68">p</a> <td>wcsstr<td>wchar.h<td>wchar_t *wcsstr(const wchar_t *s1, const wchar_t *s2);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n64">p</a> <td>wcstok<td>wchar.h<td>wchar_t *wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n71">p</a> <td>wmemchr<td>wchar.h<td>wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n66">p</a> <td>wcslen<td>wchar.h<td>size_t wcslen(const wchar_t *s);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n75">p</a> <td>wmemset<td>wchar.h<td>wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n134">p</a> <td>wcsftime<td>wchar.h<td>size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n77">p</a> <td>btowc<td>wchar.h<td>wint_t btowc(int c);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n78">p</a> <td>wctob<td>wchar.h<td>int wctob(wint_t c);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n80">p</a> <td>mbsinit<td>wchar.h<td>int mbsinit(const mbstate_t *ps);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n84">p</a> <td>mbrlen<td>wchar.h<td>size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n81">p</a> <td>mbrtowc<td>wchar.h<td>size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n82">p</a> <td>wcrtomb<td>wchar.h<td>size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n86">p</a> <td>mbsrtowcs<td>wchar.h<td>size_t mbsrtowcs(wchar_t * restrict dst, const char ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n87">p</a> <td>wcsrtombs<td>wchar.h<td>size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, mbstate_t * restrict ps);<td>B.23 Extended multibyte/wide character utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wint_t<td>wctype.h<td>&#160;<td>B.24 Wide character classification and mapping utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wctrans_t<td>wctype.h<td>&#160;<td>B.24 Wide character classification and mapping utilities
 <tr><td>&#160;<td>&#160;<td>t <td>wctype_t<td>wctype.h<td>&#160;<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n31">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n32">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wctype.h<td>&#160;<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n152">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n26">p</a> <td>iswalnum<td>wctype.h<td>int iswalnum(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n153">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n27">p</a> <td>iswalpha<td>wctype.h<td>int iswalpha(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n154">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n28">p</a> <td>iswblank<td>wctype.h<td>int iswblank(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n155">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n29">p</a> <td>iswcntrl<td>wctype.h<td>int iswcntrl(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n130">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n168">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n169">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n156">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n24">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n45">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n46">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n30">p</a> <td>iswdigit<td>wctype.h<td>int iswdigit(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n157">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n31">p</a> <td>iswgraph<td>wctype.h<td>int iswgraph(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n158">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n32">p</a> <td>iswlower<td>wctype.h<td>int iswlower(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n159">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n33">p</a> <td>iswprint<td>wctype.h<td>int iswprint(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n160">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n34">p</a> <td>iswpunct<td>wctype.h<td>int iswpunct(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n161">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n35">p</a> <td>iswspace<td>wctype.h<td>int iswspace(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n162">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n36">p</a> <td>iswupper<td>wctype.h<td>int iswupper(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n163">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n37">p</a> <td>iswxdigit<td>wctype.h<td>int iswxdigit(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n164">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n38">p</a> <td>iswctype<td>wctype.h<td>int iswctype(wint_t wc, wctype_t desc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n167">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n43">p</a> <td>wctype<td>wctype.h<td>wctype_t wctype(const char *property);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n165">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n40">p</a> <td>towlower<td>wctype.h<td>wint_t towlower(wint_t wc);<td>B.24 Wide character classification and mapping utilities
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n166">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n41">p</a> <td>towupper<td>wctype.h<td>wint_t towupper(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n37">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n38">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n21">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n22">d</a> <td>WEOF<td>wctype.h<td>&#160;<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n158">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n26">p</a> <td>iswalnum<td>wctype.h<td>int iswalnum(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n159">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n27">p</a> <td>iswalpha<td>wctype.h<td>int iswalpha(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n160">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n28">p</a> <td>iswblank<td>wctype.h<td>int iswblank(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n161">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n29">p</a> <td>iswcntrl<td>wctype.h<td>int iswcntrl(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n136">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n174">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n175">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n162">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n24">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n45">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n46">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n30">p</a> <td>iswdigit<td>wctype.h<td>int iswdigit(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n163">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n31">p</a> <td>iswgraph<td>wctype.h<td>int iswgraph(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n164">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n32">p</a> <td>iswlower<td>wctype.h<td>int iswlower(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n165">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n33">p</a> <td>iswprint<td>wctype.h<td>int iswprint(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n166">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n34">p</a> <td>iswpunct<td>wctype.h<td>int iswpunct(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n167">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n35">p</a> <td>iswspace<td>wctype.h<td>int iswspace(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n168">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n36">p</a> <td>iswupper<td>wctype.h<td>int iswupper(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n169">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n37">p</a> <td>iswxdigit<td>wctype.h<td>int iswxdigit(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n170">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n38">p</a> <td>iswctype<td>wctype.h<td>int iswctype(wint_t wc, wctype_t desc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n173">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n43">p</a> <td>wctype<td>wctype.h<td>wctype_t wctype(const char *property);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n171">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n40">p</a> <td>towlower<td>wctype.h<td>wint_t towlower(wint_t wc);<td>B.24 Wide character classification and mapping utilities
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n172">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n41">p</a> <td>towupper<td>wctype.h<td>wint_t towupper(wint_t wc);<td>B.24 Wide character classification and mapping utilities
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n39">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.musl-libc.org/cgit/musl/tree/include/wctype.h#n42">p</a> <td>wctrans<td>wctype.h<td>wctrans_t wctrans(const char *property);<td>B.24 Wide character classification and mapping utilities
 </table>
index 6575b84..7071039 100644 (file)
@@ -1,5 +1,5 @@
 <h3>musl vs posix api</h3>
-<h4>commit</h4><p>commit <a href="http://git.musl-libc.org/cgit/musl/commit/?id=a57ac9bf64ba202bd94d1b81bddd93b850c7b9d6">a57ac9bf64ba202bd94d1b81bddd93b850c7b9d6</a><br>Date:   Fri Feb 1 01:49:07 2013 -0500<br><br>    release notes for 0.9.9
+<h4>commit</h4><p>commit <a href="http://git.musl-libc.org/cgit/musl/commit/?id=4ba3ebdcfeb7b5aa2dd5079e939514a634395124">4ba3ebdcfeb7b5aa2dd5079e939514a634395124</a><br>Date:   Wed Apr 10 22:38:46 2013 -0400<br><br>    make ifaddrs.h expose sys/socket.h<br>    <br>    the getifaddrs interface seems to have been invented by glibc, and<br>    they expose socket.h, so for us not to do so is just gratuitous<br>    incompatibility with the interface we're mimicing.
 <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.musl-libc.org/cgit/musl/tree/include/sys/select.h#n29">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
@@ -7,16 +7,16 @@
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/select.h#n28">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/FD_SET.html">FD_SET</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>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/select.h#n27">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/FD_ZERO.html">FD_ZERO</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n43">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, _exit - terminate a process
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n86">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/unistd.h.html">unistd.h</a><td>&#160;<td>_Exit, _exit - terminate a process
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n87">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/unistd.h.html">unistd.h</a><td>&#160;<td>_Exit, _exit - terminate a process
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/setjmp.h#n29">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> <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>_longjmp, _setjmp - non-local goto
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/setjmp.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/_setjmp.html">_setjmp</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>_longjmp, _setjmp - non-local goto
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n58">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/_tolower.html">_tolower</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>_tolower - transliterate uppercase characters to lowercase
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n59">d</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/_toupper.html">_toupper</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>_toupper - transliterate lowercase characters to uppercase
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n121">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n122">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n40">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n54">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n256">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n67">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n269">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n68">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.musl-libc.org/cgit/musl/tree/include/math.h#n119">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n146">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n209">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.musl-libc.org/cgit/musl/tree/include/math.h#n120">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.musl-libc.org/cgit/musl/tree/include/math.h#n123">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n147">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n210">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
@@ -30,7 +30,7 @@
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/aio.h#n45">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_return.html">aio_return</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html">aio.h</a><td>&#160;<td>aio_return - retrieve return status of an asynchronous I/O operation
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/aio.h#n47">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_suspend.html">aio_suspend</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html">aio.h</a><td>&#160;<td>aio_suspend - wait for an asynchronous I/O request
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/aio.h#n43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_write.html">aio_write</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html">aio.h</a><td>&#160;<td>aio_write - asynchronous write to a file
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/alarm.html">alarm</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>alarm - schedule an alarm signal
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n75">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/alarm.html">alarm</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>alarm - schedule an alarm signal
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/dirent.h#n41">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.musl-libc.org/cgit/musl/tree/include/time.h#n54">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.musl-libc.org/cgit/musl/tree/include/time.h#n68">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
@@ -56,9 +56,9 @@
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n18">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n19">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.musl-libc.org/cgit/musl/tree/include/libgen.h#n9">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n94">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n253">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n266">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n51">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n71">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n77">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n72">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.musl-libc.org/cgit/musl/tree/include/complex.h#n73">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.musl-libc.org/cgit/musl/tree/include/complex.h#n74">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.musl-libc.org/cgit/musl/tree/include/termios.h#n22">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.musl-libc.org/cgit/musl/tree/include/termios.h#n25">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.musl-libc.org/cgit/musl/tree/include/termios.h#n24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/cfsetospeed.html">cfsetospeed</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>cfsetospeed - set output baud rate
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n70">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n71">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.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n77">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n45">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n46">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n111">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n88">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n156">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n219">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.musl-libc.org/cgit/musl/tree/include/complex.h#n112">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n89">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.musl-libc.org/cgit/musl/tree/include/complex.h#n113">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n90">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.musl-libc.org/cgit/musl/tree/include/complex.h#n68">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.musl-libc.org/cgit/musl/tree/include/complex.h#n69">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.musl-libc.org/cgit/musl/tree/include/complex.h#n70">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n32">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n33">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.musl-libc.org/cgit/musl/tree/include/dirent.h#n31">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.musl-libc.org/cgit/musl/tree/include/syslog.h#n59">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n125">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n126">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n92">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n157">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n220">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.musl-libc.org/cgit/musl/tree/include/complex.h#n93">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.musl-libc.org/cgit/musl/tree/include/complex.h#n94">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n254">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n267">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.musl-libc.org/cgit/musl/tree/include/math.h#n155">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n158">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n221">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.musl-libc.org/cgit/musl/tree/include/math.h#n156">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.musl-libc.org/cgit/musl/tree/include/math.h#n157">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.musl-libc.org/cgit/musl/tree/include/complex.h#n108">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n101">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.musl-libc.org/cgit/musl/tree/include/complex.h#n109">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n102">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.musl-libc.org/cgit/musl/tree/include/fcntl.h#n33">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.musl-libc.org/cgit/musl/tree/include/crypt.h#n13">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n141">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/crypt.h#n13">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n142">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/complex.h#n32">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.musl-libc.org/cgit/musl/tree/include/complex.h#n33">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.musl-libc.org/cgit/musl/tree/include/complex.h#n56">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.musl-libc.org/cgit/musl/tree/include/complex.h#n61">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.musl-libc.org/cgit/musl/tree/include/complex.h#n62">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.musl-libc.org/cgit/musl/tree/include/complex.h#n38">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n145">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n116">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n145">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n117">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.musl-libc.org/cgit/musl/tree/include/time.h#n55">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.musl-libc.org/cgit/musl/tree/include/time.h#n69">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>V<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n105">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/daylight.html">daylight</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#XSI">XSI</a><td>daylight, timezone, tzname, tzset - set timezone conversion information
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/dlfcn.h#n22">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.musl-libc.org/cgit/musl/tree/include/dlfcn.h#n23">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n133">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n123">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup.html">dup</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>dup, dup2 - duplicate an open file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html">dup2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>dup, dup2 - duplicate an open file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n124">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup.html">dup</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>dup, dup2 - duplicate an open file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html">dup2</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>dup, dup2 - duplicate an open file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n70">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/duplocale.html">duplocale</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>duplocale - duplicate a locale object
-<tr><td>nosym<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n142">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/encrypt.html">encrypt</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>encrypt - encoding function (<b>CRYPT</b>)
-<tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endgrent.html">endgrent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endgrent, getgrent, setgrent - group database entry functions
+<tr><td>nosym<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n143">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/encrypt.html">encrypt</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>encrypt - encoding function (<b>CRYPT</b>)
+<tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endgrent.html">endgrent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endgrent, getgrent, setgrent - group database entry functions
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n102">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endhostent.html">endhostent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endhostent, gethostent, sethostent - network host database functions
 <tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n106">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endnetent.html">endnetent</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>TW<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n118">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endprotoent.html">endprotoent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
 <tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/pwd.h#n32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endpwent.html">endpwent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pwd.h.html">pwd.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endpwent, getpwent, setpwent - user database functions
 <tr><td>&#160;<td>TW<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n112">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/endservent.html">endservent</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.musl-libc.org/cgit/musl/tree/include/utmpx.h#n34">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>&#160;<td>V<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n177">x</a> <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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n124">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>V<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n178">x</a> <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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n125">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.musl-libc.org/cgit/musl/tree/include/math.h#n167">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n163">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n226">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.musl-libc.org/cgit/musl/tree/include/math.h#n171">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n164">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n227">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.musl-libc.org/cgit/musl/tree/include/math.h#n172">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.musl-libc.org/cgit/musl/tree/include/math.h#n173">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.musl-libc.org/cgit/musl/tree/include/math.h#n168">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.musl-libc.org/cgit/musl/tree/include/math.h#n169">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.musl-libc.org/cgit/musl/tree/include/errno.h#n14">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n82">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n81">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n84">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execlp.html">execlp</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execv.html">execv</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n79">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n83">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>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/errno.h#n16">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n83">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n82">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n85">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execlp.html">execlp</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/execv.html">execv</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n80">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n84">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n42">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.musl-libc.org/cgit/musl/tree/include/math.h#n175">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n165">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n228">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.musl-libc.org/cgit/musl/tree/include/math.h#n179">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n166">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n229">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.musl-libc.org/cgit/musl/tree/include/math.h#n187">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n168">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n231">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.musl-libc.org/cgit/musl/tree/include/math.h#n188">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.musl-libc.org/cgit/musl/tree/include/math.h#n189">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n68">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n71">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n69">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n72">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.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n78">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.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n79">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchmodat.html">fchmodat</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchown.html">fchown</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>fchown - change owner and group of a file
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchownat.html">fchownat</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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n47">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchown.html">fchown</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>fchown - change owner and group of a file
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fchownat.html">fchownat</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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n60">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.musl-libc.org/cgit/musl/tree/include/fcntl.h#n34">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n38">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n39">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n191">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n169">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n232">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.musl-libc.org/cgit/musl/tree/include/math.h#n192">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.musl-libc.org/cgit/musl/tree/include/math.h#n193">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.musl-libc.org/cgit/musl/tree/include/fenv.h#n17">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fesetround.html">fesetround</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fenv.h.html">fenv.h</a><td>&#160;<td>fegetround, fesetround - get and set current rounding direction
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fenv.h#n14">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fetestexcept.html">fetestexcept</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fenv.h.html">fenv.h</a><td>&#160;<td>fetestexcept - test floating-point exception flags
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fenv.h#n22">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/feupdateenv.html">feupdateenv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fenv.h.html">fenv.h</a><td>&#160;<td>feupdateenv - update floating-point environment
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n85">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fexecve.html">fexecve</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fexecve.html">fexecve</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.musl-libc.org/cgit/musl/tree/include/stdio.h#n67">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fflush.html">fflush</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fflush - flush a stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ffs.html">ffs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>ffs - find first set bit
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ffs.html">ffs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>ffs - find first set bit
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fgetc.html">fgetc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fgetc - get a byte from a stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fgetpos.html">fgetpos</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fgetpos - get current file position information
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n89">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fgets.html">fgets</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fgets - get a string from a stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fgetwc.html">fgetwc</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>fgetwc - get a wide-character code from a stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n122">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fgetwc.html">fgetwc</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>fgetwc - get a wide-character code from a stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n128">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n130">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n135">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.musl-libc.org/cgit/musl/tree/include/math.h#n195">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n170">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n233">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>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.musl-libc.org/cgit/musl/tree/include/fnmatch.h#n23">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n58">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n78">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n123">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>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n79">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n124">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.musl-libc.org/cgit/musl/tree/include/math.h#n52">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n98">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n85">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n94">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n118">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fputwc.html">fputwc</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>fputwc - put a wide-character code on a stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n123">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fputws.html">fputws</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>fputws - put a wide-character string on a stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n124">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fputwc.html">fputwc</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>fputwc - put a wide-character code on a stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n129">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fputws.html">fputws</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>fputws - put a wide-character string on a stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n77">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fread.html">fread</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fread - binary input
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/free.html">free</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>free - free allocated memory
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n61">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.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fstat.html">fstat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>fstat - get file status
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n76">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fstatat.html">fstatat</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.musl-libc.org/cgit/musl/tree/include/sys/statvfs.h#n32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fstatvfs.html">fstatvfs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_statvfs.h.html">sys/statvfs.h</a><td>&#160;<td>fstatvfs, statvfs - get file system information
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fsync.html">fsync</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#FSC">FSC</a><td>fsync - synchronize changes to a file
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fsync.html">fsync</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#FSC">FSC</a><td>fsync - synchronize changes to a file
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n71">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftell.html">ftell</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>ftell, ftello - return a file offset in a stream
 <tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n132">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftello.html">ftello</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>ftell, ftello - return a file offset in a stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/ipc.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftok.html">ftok</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_ipc.h.html">sys/ipc.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>ftok - generate an IPC key
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html">ftruncate</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>ftruncate - truncate a file to a specified length
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n61">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html">ftruncate</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>ftruncate - truncate a file to a specified length
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n136">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftrylockfile.html">ftrylockfile</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.musl-libc.org/cgit/musl/tree/include/ftw.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftw.html">ftw</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>ftw - traverse (walk) a file tree
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n137">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/funlockfile.html">funlockfile</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.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n88">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/futimens.html">futimens</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>futimens, utimensat, utimes - set file access and modification times
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n95">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fwide.html">fwide</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>fwide - set stream orientation
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n99">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fwprintf.html">fwprintf</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>fwprintf, swprintf, wprintf - print formatted wide-character output
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n101">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fwide.html">fwide</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>fwide - set stream orientation
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n105">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fwprintf.html">fwprintf</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>fwprintf, swprintf, wprintf - print formatted wide-character output
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n78">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fwrite.html">fwrite</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>fwrite - binary output
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n107">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fwscanf.html">fwscanf</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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n113">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/fwscanf.html">fwscanf</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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n63">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gai_strerror.html">gai_strerror</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>gai_strerror - address and name information error description
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getaddrinfo.html">getaddrinfo</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.musl-libc.org/cgit/musl/tree/include/stdio.h#n81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getc.html">getc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>getc - get a byte from a stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n138">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getc_unlocked.html">getc_unlocked</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>getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n82">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getchar.html">getchar</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>getchar - get a byte from a .I stdin stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n139">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getchar_unlocked.html">getchar_unlocked</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>getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n72">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getcwd.html">getcwd</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getcwd - get the pathname of the current working directory
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getcwd.html">getcwd</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getcwd - get the pathname of the current working directory
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getdate.html">getdate</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#XSI">XSI</a><td>getdate - convert user format date and time
 <tr><td>&#160;<td>C<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n108">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getdate_err.html">getdate_err</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#XSI">XSI</a><td>getdate - convert user format date and time
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n142">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getdelim.html">getdelim</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>getdelim, getline - read a delimited record from .I stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getegid.html">getegid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getegid - get the effective group ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n105">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getegid.html">getegid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getegid - get the effective group ID
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n47">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getenv.html">getenv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>getenv - get value of an environment variable
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n102">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/geteuid.html">geteuid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>geteuid - get the effective user ID
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n103">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgid.html">getgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getgid - get the real group ID
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrent.html">getgrent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endgrent, getgrent, setgrent - group database entry functions
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrgid.html">getgrgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrgid, getgrgid_r - get group database entry for a group ID
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrgid_r.html">getgrgid_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrgid, getgrgid_r - get group database entry for a group ID
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrnam.html">getgrnam</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrnam, getgrnam_r - search group database for a name
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrnam_r.html">getgrnam_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrnam, getgrnam_r - search group database for a name
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n105">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgroups.html">getgroups</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getgroups - get supplementary group IDs
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n103">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/geteuid.html">geteuid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>geteuid - get the effective user ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgid.html">getgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getgid - get the real group ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrent.html">getgrent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endgrent, getgrent, setgrent - group database entry functions
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrgid.html">getgrgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrgid, getgrgid_r - get group database entry for a group ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrgid_r.html">getgrgid_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrgid, getgrgid_r - get group database entry for a group ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrnam.html">getgrnam</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrnam, getgrnam_r - search group database for a name
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgrnam_r.html">getgrnam_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td>&#160;<td>getgrnam, getgrnam_r - search group database for a name
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n106">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getgroups.html">getgroups</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getgroups - get supplementary group IDs
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n103">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostent.html">gethostent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endhostent, gethostent, sethostent - network host database functions
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n134">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostid.html">gethostid</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>gethostid - get an identifier for the current host
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n115">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostname.html">gethostname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>gethostname - get name of current host
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n135">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostid.html">gethostid</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>gethostid - get an identifier for the current host
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostname.html">gethostname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>gethostname - get name of current host
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/time.h#n26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getitimer.html">getitimer</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>getitimer, setitimer - get and set value of interval timer
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n143">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getline.html">getline</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>getdelim, getline - read a delimited record from .I stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n113">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getlogin.html">getlogin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getlogin, getlogin_r - get login name
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getlogin_r.html">getlogin_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getlogin, getlogin_r - get login name
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getlogin.html">getlogin</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getlogin, getlogin_r - get login name
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n115">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getlogin_r.html">getlogin_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getlogin, getlogin_r - get login name
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getnameinfo.html">getnameinfo</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>getnameinfo - get name information
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getnetbyaddr.html">getnetbyaddr</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.musl-libc.org/cgit/musl/tree/include/netdb.h#n109">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.musl-libc.org/cgit/musl/tree/include/netdb.h#n107">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.musl-libc.org/cgit/musl/tree/include/getopt.h#n8">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n118">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n260">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n91">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n90">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n88">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n89">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getppid.html">getppid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getppid - get the parent process ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n8">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n119">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n273">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n92">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n91">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n89">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n90">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getppid.html">getppid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>getppid - get the parent process ID
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/resource.h#n55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getpriority.html">getpriority</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>getpriority, setpriority - get and set the nice value
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getprotobyname.html">getprotobyname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n121">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getprotobynumber.html">getprotobynumber</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getservbyname.html">getservbyname</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.musl-libc.org/cgit/musl/tree/include/netdb.h#n115">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.musl-libc.org/cgit/musl/tree/include/netdb.h#n113">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n94">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n259">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n269">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n99">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n95">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n272">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n282">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n100">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.musl-libc.org/cgit/musl/tree/include/sys/time.h#n11">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n101">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n102">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.musl-libc.org/cgit/musl/tree/include/utmpx.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getutxent.html">getutxent</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.musl-libc.org/cgit/musl/tree/include/utmpx.h#n36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getutxid.html">getutxid</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.musl-libc.org/cgit/musl/tree/include/utmpx.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getutxline.html">getutxline</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.musl-libc.org/cgit/musl/tree/include/wchar.h#n115">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getwc.html">getwc</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>getwc - get a wide character from a stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getwchar.html">getwchar</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>getwchar - get a wide character from a .I stdin stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n121">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getwc.html">getwc</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>getwc - get a wide character from a stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n122">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getwchar.html">getwchar</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>getwchar - get a wide character from a .I stdin stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/glob.h#n22">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/glob.html">glob</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/glob.h.html">glob.h</a><td>&#160;<td>glob, globfree - generate pathnames matching a pattern
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/glob.h#n23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/globfree.html">globfree</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/glob.h.html">glob.h</a><td>&#160;<td>glob, globfree - generate pathnames matching a pattern
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gmtime.html">gmtime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td>&#160;<td>gmtime, gmtime_r - convert a time value to a broken-down UTC time
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/gmtime_r.html">gmtime_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>gmtime, gmtime_r - convert a time value to a broken-down UTC time
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n117">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/grantpt.html">grantpt</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>grantpt - grant access to the slave pseudo-terminal device
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n118">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/grantpt.html">grantpt</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>grantpt - grant access to the slave pseudo-terminal device
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/search.h#n21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hcreate.html">hcreate</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.musl-libc.org/cgit/musl/tree/include/search.h#n22">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/hdestroy.html">hdestroy</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.musl-libc.org/cgit/musl/tree/include/search.h#n23">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.musl-libc.org/cgit/musl/tree/include/arpa/inet.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/inet_ntoa.html">inet_ntoa</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.musl-libc.org/cgit/musl/tree/include/arpa/inet.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/inet_ntop.html">inet_ntop</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/arpa_inet.h.html">arpa/inet.h</a><td>&#160;<td>inet_ntop, inet_pton - convert IPv4 and IPv6 addresses between binary and text form
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/arpa/inet.h#n29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/inet_pton.html">inet_pton</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/arpa_inet.h.html">arpa/inet.h</a><td>&#160;<td>inet_ntop, inet_pton - convert IPv4 and IPv6 addresses between binary and text form
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n110">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/initstate.html">initstate</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n111">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/initstate.html">initstate</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.musl-libc.org/cgit/musl/tree/include/search.h#n25">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/insque.html">insque</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.musl-libc.org/cgit/musl/tree/include/ctype.h#n10">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isalnum.html">isalnum</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isalnum, isalnum_l - test for an alphanumeric character
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n41">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isalnum_l.html">isalnum_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>isalnum, isalnum_l - test for an alphanumeric character
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n25">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n11">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isalpha.html">isalpha</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isalpha, isalpha_l - test for an alphabetic character
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isalpha_l.html">isalpha_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>isalpha, isalpha_l - test for an alphabetic character
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isascii.html">isascii</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>isascii - test for a 7-bit US-ASCII character
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n97">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isatty.html">isatty</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>isatty - test for a terminal device
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isatty.html">isatty</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>isatty - test for a terminal device
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n12">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isblank.html">isblank</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>isblank, isblank_l - test for a blank character
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/isblank_l.html">isblank_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>isblank, isblank_l - test for a blank character
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n13">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iscntrl.html">iscntrl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html">ctype.h</a><td>&#160;<td>iscntrl, iscntrl_l - test for a control character
 <tr><td>&#160;<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n86">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.musl-libc.org/cgit/musl/tree/include/ctype.h#n28">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/ctype.h#n20">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.musl-libc.org/cgit/musl/tree/include/ctype.h#n51">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n152">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n26">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n158">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n26">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.musl-libc.org/cgit/musl/tree/include/wctype.h#n51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswalnum_l.html">iswalnum_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>iswalnum, iswalnum_l - test for an alphanumeric wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n153">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswalpha.html">iswalpha</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswalpha, iswalpha_l - test for an alphabetic wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n159">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswalpha.html">iswalpha</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswalpha, iswalpha_l - test for an alphabetic wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswalpha_l.html">iswalpha_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>iswalpha, iswalpha_l - test for an alphabetic wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n154">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswblank.html">iswblank</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswblank, iswblank_l - test for a blank wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n160">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswblank.html">iswblank</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswblank, iswblank_l - test for a blank wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n53">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswblank_l.html">iswblank_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>iswblank, iswblank_l - test for a blank wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n155">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswcntrl.html">iswcntrl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswcntrl, iswcntrl_l - test for a control wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n161">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswcntrl.html">iswcntrl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswcntrl, iswcntrl_l - test for a control wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswcntrl_l.html">iswcntrl_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>iswcntrl, iswcntrl_l - test for a control wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n164">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswctype.html">iswctype</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswctype, iswctype_l - test character for a specified class
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n170">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswctype.html">iswctype</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswctype, iswctype_l - test character for a specified class
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n63">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswctype_l.html">iswctype_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>iswctype, iswctype_l - test character for a specified class
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n130">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n168">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n169">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n156">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n24">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n45">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n46">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswdigit.html">iswdigit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswdigit, iswdigit_l - test for a decimal digit wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n136">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n174">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n175">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n162">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n24">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n45">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n46">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswdigit.html">iswdigit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswdigit, iswdigit_l - test for a decimal digit wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswdigit_l.html">iswdigit_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>iswdigit, iswdigit_l - test for a decimal digit wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n157">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswgraph.html">iswgraph</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswgraph, iswgraph_l - test for a visible wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n163">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswgraph.html">iswgraph</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswgraph, iswgraph_l - test for a visible wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswgraph_l.html">iswgraph_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>iswgraph, iswgraph_l - test for a visible wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n158">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswlower.html">iswlower</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswlower, iswlower_l - test for a lowercase letter wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n164">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswlower.html">iswlower</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswlower, iswlower_l - test for a lowercase letter wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n57">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswlower_l.html">iswlower_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>iswlower, iswlower_l - test for a lowercase letter wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n159">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswprint.html">iswprint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswprint, iswprint_l - test for a printable wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n165">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswprint.html">iswprint</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswprint, iswprint_l - test for a printable wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n58">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswprint_l.html">iswprint_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>iswprint, iswprint_l - test for a printable wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n160">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswpunct.html">iswpunct</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswpunct, iswpunct_l - test for a punctuation wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n166">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswpunct.html">iswpunct</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswpunct, iswpunct_l - test for a punctuation wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n59">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswpunct_l.html">iswpunct_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>iswpunct, iswpunct_l - test for a punctuation wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n161">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswspace.html">iswspace</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswspace, iswspace_l - test for a white-space wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n167">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswspace.html">iswspace</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswspace, iswspace_l - test for a white-space wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswspace_l.html">iswspace_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>iswspace, iswspace_l - test for a white-space wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n162">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswupper.html">iswupper</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswupper, iswupper_l - test for an uppercase letter wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n168">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswupper.html">iswupper</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswupper, iswupper_l - test for an uppercase letter wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n61">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswupper_l.html">iswupper_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>iswupper, iswupper_l - test for an uppercase letter wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n163">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswxdigit.html">iswxdigit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n169">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/iswxdigit.html">iswxdigit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>iswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n62">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.musl-libc.org/cgit/musl/tree/include/ctype.h#n21">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.musl-libc.org/cgit/musl/tree/include/ctype.h#n52">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n370">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.musl-libc.org/cgit/musl/tree/include/math.h#n371">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.musl-libc.org/cgit/musl/tree/include/math.h#n372">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n128">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n129">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.musl-libc.org/cgit/musl/tree/include/signal.h#n163">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.musl-libc.org/cgit/musl/tree/include/signal.h#n189">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/l64a.html">l64a</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n121">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/l64a.html">l64a</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n55">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n47">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n131">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n48">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n132">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.musl-libc.org/cgit/musl/tree/include/math.h#n227">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n178">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n241">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.musl-libc.org/cgit/musl/tree/include/math.h#n228">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.musl-libc.org/cgit/musl/tree/include/math.h#n229">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.musl-libc.org/cgit/musl/tree/include/math.h#n231">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n179">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n242">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.musl-libc.org/cgit/musl/tree/include/math.h#n232">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.musl-libc.org/cgit/musl/tree/include/math.h#n233">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n50">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n51">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n51">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n52">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.musl-libc.org/cgit/musl/tree/include/aio.h#n50">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n255">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n268">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n56">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n64">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.musl-libc.org/cgit/musl/tree/include/math.h#n235">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n180">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n243">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.musl-libc.org/cgit/musl/tree/include/locale.h#n50">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.musl-libc.org/cgit/musl/tree/include/time.h#n53">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.musl-libc.org/cgit/musl/tree/include/time.h#n67">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.musl-libc.org/cgit/musl/tree/include/fcntl.h#n126">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n133">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.musl-libc.org/cgit/musl/tree/include/fcntl.h#n126">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n134">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.musl-libc.org/cgit/musl/tree/include/math.h#n243">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n182">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n245">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.musl-libc.org/cgit/musl/tree/include/math.h#n247">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n183">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n246">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.musl-libc.org/cgit/musl/tree/include/math.h#n248">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.musl-libc.org/cgit/musl/tree/include/math.h#n244">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.musl-libc.org/cgit/musl/tree/include/math.h#n245">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.musl-libc.org/cgit/musl/tree/include/setjmp.h#n37">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/setjmp.h#n34">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n125">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n126">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.musl-libc.org/cgit/musl/tree/include/math.h#n263">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n187">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n250">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.musl-libc.org/cgit/musl/tree/include/math.h#n264">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.musl-libc.org/cgit/musl/tree/include/math.h#n265">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.musl-libc.org/cgit/musl/tree/include/math.h#n268">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.musl-libc.org/cgit/musl/tree/include/math.h#n269">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.musl-libc.org/cgit/musl/tree/include/search.h#n28">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n36">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n37">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.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n75">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>TW<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/malloc.html">malloc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>malloc - a memory allocator
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mblen.html">mblen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>mblen - get number of bytes in a character
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n78">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbrlen.html">mbrlen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbrlen - get number of bytes in a character (restartable)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n75">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbrtowc.html">mbrtowc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbrtowc - convert a character to a wide-character code (restartable)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbsinit.html">mbsinit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbsinit - determine conversion object status
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n135">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbsnrtowcs.html">mbsnrtowcs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>mbsnrtowcs, mbsrtowcs - convert a character string to a wide-character string (restartable)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbsrtowcs.html">mbsrtowcs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbsnrtowcs, mbsrtowcs - convert a character string to a wide-character string (restartable)
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n84">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbrlen.html">mbrlen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbrlen - get number of bytes in a character (restartable)
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbrtowc.html">mbrtowc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbrtowc - convert a character to a wide-character code (restartable)
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbsinit.html">mbsinit</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbsinit - determine conversion object status
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n141">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbsnrtowcs.html">mbsnrtowcs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>mbsnrtowcs, mbsrtowcs - convert a character string to a wide-character string (restartable)
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbsrtowcs.html">mbsrtowcs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>mbsnrtowcs, mbsrtowcs - convert a character string to a wide-character string (restartable)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n69">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbstowcs.html">mbstowcs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>mbstowcs - convert a character string to a wide-character string
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n67">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mbtowc.html">mbtowc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>mbtowc - convert a character to a wide-character code
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/memccpy.html">memccpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>memccpy - copy bytes in memory
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/memset.html">memset</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>memset - set bytes in memory
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkdir.html">mkdir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>mkdir, mkdirat - make a directory relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n84">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkdirat.html">mkdirat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>mkdir, mkdirat - make a directory relative to directory file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkdtemp.html">mkdtemp</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>mkdtemp, mkstemp - create a unique directory or file
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n99">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkdtemp.html">mkdtemp</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>mkdtemp, mkstemp - create a unique directory or file
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n83">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkfifo.html">mkfifo</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>mkfifo, mkfifoat - make a FIFO special file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkfifoat.html">mkfifoat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>mkfifo, mkfifoat - make a FIFO special file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n82">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mknod.html">mknod</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>mknod, mknodat - make directory, special file, or regular file
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/mqueue.h#n29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mq_timedreceive.html">mq_timedreceive</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/mqueue.h.html">mqueue.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#MSG">MSG</a><td>mq_receive, mq_timedreceive - receive a message from a message queue (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/mqueue.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mq_timedsend.html">mq_timedsend</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/mqueue.h.html">mqueue.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#MSG">MSG</a><td>mq_send, mq_timedsend - send a message to a message queue (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/mqueue.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mq_unlink.html">mq_unlink</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_unlink - remove a message queue (<b>REALTIME</b>)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n127">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mrand48.html">mrand48</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n128">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/mrand48.html">mrand48</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.musl-libc.org/cgit/musl/tree/include/sys/msg.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/msgctl.html">msgctl</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_msg.h.html">sys/msg.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>msgctl - XSI message control operations
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/msg.h#n36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/msgget.html">msgget</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_msg.h.html">sys/msg.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>msgget - get the XSI message queue identifier
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/msg.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/msgrcv.html">msgrcv</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_msg.h.html">sys/msg.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>msgrcv - XSI message receive operation
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n288">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.musl-libc.org/cgit/musl/tree/include/math.h#n289">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.musl-libc.org/cgit/musl/tree/include/ftw.h#n31">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n135">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>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n136">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.musl-libc.org/cgit/musl/tree/include/langinfo.h#n80">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.musl-libc.org/cgit/musl/tree/include/langinfo.h#n81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nl_langinfo_l.html">nl_langinfo_l</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n126">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nrand48.html">nrand48</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n127">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/nrand48.html">nrand48</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.musl-libc.org/cgit/musl/tree/include/arpa/inet.h#n23">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/netinet/in.h#n72">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ntohl.html">ntohl</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.musl-libc.org/cgit/musl/tree/include/arpa/inet.h#n24">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/netinet/in.h#n73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ntohs.html">ntohs</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.musl-libc.org/cgit/musl/tree/include/fcntl.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html">open</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>open, openat - open file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n126">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/open_memstream.html">open_memstream</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>open_memstream, open_wmemstream - open a dynamic memory buffer stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n134">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/open_wmemstream.html">open_wmemstream</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>open_memstream, open_wmemstream - open a dynamic memory buffer stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n140">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/open_wmemstream.html">open_wmemstream</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>open_memstream, open_wmemstream - open a dynamic memory buffer stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/openat.html">openat</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>open, openat - open file relative to directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/dirent.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/opendir.html">opendir</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.musl-libc.org/cgit/musl/tree/include/syslog.h#n60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/openlog.html">openlog</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>C<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n9">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n119">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/optarg.html">optarg</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>D<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n10">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n120">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/opterr.html">opterr</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>D<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n10">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n120">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/optind.html">optind</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>C<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n10">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n120">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/optopt.html">optopt</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n122">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pathconf.html">pathconf</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>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n76">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pause.html">pause</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>pause - suspend the thread until a signal is received
+<tr><td>&#160;<td>C<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n9">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n120">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/optarg.html">optarg</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>D<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n10">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n121">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/opterr.html">opterr</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>D<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n10">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n121">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/optind.html">optind</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>C<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/getopt.h#n10">x</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n121">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/optopt.html">optopt</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n123">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pathconf.html">pathconf</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>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n77">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pause.html">pause</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>pause - suspend the thread until a signal is received
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n129">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pclose.html">pclose</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>pclose - close a pipe stream to or from a process
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/perror.html">perror</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>perror - write error messages to standard error
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pipe.html">pipe</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>pipe - create an interprocess channel
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pipe.html">pipe</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>pipe - create an interprocess channel
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/poll.h#n32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html">poll</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/poll.h.html">poll.h</a><td>&#160;<td>poll - input/output multiplexing
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n128">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/popen.html">popen</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>popen - initiate pipe streams to or from a process
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/fcntl.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_fadvise.html">posix_fadvise</a><td> <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#ADV">ADV</a><td>posix_fadvise - file advisory information (<b>ADVANCED REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/mman.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_madvise.html">posix_madvise</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#ADV">ADV</a><td>posix_madvise - memory advisory information and alignment control (<b>ADVANCED REALTIME</b>)
 <tr><td>missing<td>&#160;<td>&#160;<td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_mem_offset.html">posix_mem_offset</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_mem_offset - find offset and length of a mapped typed memory block (<b>ADVANCED REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n94">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_memalign.html">posix_memalign</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#ADV">ADV</a><td>posix_memalign - aligned memory allocation (<b>ADVANCED REALTIME</b>)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_openpt.html">posix_openpt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.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#XSI">XSI</a><td>posix_openpt - open a pseudo-terminal device
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n117">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_openpt.html">posix_openpt</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.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#XSI">XSI</a><td>posix_openpt - open a pseudo-terminal device
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/spawn.h#n38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_spawn.html">posix_spawn</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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/spawn.h#n67">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_addclose.html">posix_spawn_file_actions_addclose</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_file_actions_addclose, posix_spawn_file_actions_addopen - add close or open action to spawn file actions object (<b>ADVANCED REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/spawn.h#n68">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_adddup2.html">posix_spawn_file_actions_adddup2</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_file_actions_adddup2 - add dup2 action to spawn file actions object (<b>ADVANCED REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n291">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n192">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n255">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.musl-libc.org/cgit/musl/tree/include/math.h#n292">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.musl-libc.org/cgit/musl/tree/include/math.h#n293">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n42">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n43">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n97">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.musl-libc.org/cgit/musl/tree/include/sys/select.h#n33">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.musl-libc.org/cgit/musl/tree/include/signal.h#n183">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/psiginfo.html">psiginfo</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>psiginfo, psignal - print signal information to standard error
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/pthread.h#n131">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_trylock.html">pthread_spin_trylock</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pthread.h.html">pthread.h</a><td>&#160;<td>pthread_spin_lock, pthread_spin_trylock - lock a spin lock object
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/pthread.h#n132">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_unlock.html">pthread_spin_unlock</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pthread.h.html">pthread.h</a><td>&#160;<td>pthread_spin_unlock - unlock a spin lock object
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/pthread.h#n91">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_testcancel.html">pthread_testcancel</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pthread.h.html">pthread.h</a><td>&#160;<td>pthread_setcancelstate, pthread_setcanceltype, pthread_testcancel - set cancelability state
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n119">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ptsname.html">ptsname</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>ptsname - get name of the slave pseudo-terminal device
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ptsname.html">ptsname</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>ptsname - get name of the slave pseudo-terminal device
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n86">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putc.html">putc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>putc - put a byte on a stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n140">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putc_unlocked.html">putc_unlocked</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>getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n87">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putchar.html">putchar</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>putchar - put a byte on a stdout stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n141">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putchar_unlocked.html">putchar_unlocked</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>getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n115">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putenv.html">putenv</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>putenv - change or add a value to an environment
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putenv.html">putenv</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>putenv - change or add a value to an environment
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n95">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/puts.html">puts</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>puts - put a string on standard output
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/utmpx.h#n38">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pututxline.html">pututxline</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.musl-libc.org/cgit/musl/tree/include/wchar.h#n119">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putwc.html">putwc</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>putwc - put a wide character on a stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n120">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putwchar.html">putwchar</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>putwchar - put a wide character on a stdout stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pwrite.html">pwrite</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.musl-libc.org/cgit/musl/tree/include/wchar.h#n125">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putwc.html">putwc</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>putwc - put a wide character on a stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n126">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/putwchar.html">putwchar</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>putwchar - put a wide character on a stdout stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n44">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/pwrite.html">pwrite</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/qsort.html">qsort</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>qsort - sort a table of data
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/signal.h#n239">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/raise.html">raise</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html">signal.h</a><td>&#160;<td>raise - send a signal to the executing process
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rand.html">rand</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n100">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rand_r.html">rand_r</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>rand, rand_r, srand - pseudo-random number generator
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/random.html">random</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n40">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/read.html">read</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n101">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/rand_r.html">rand_r</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>rand, rand_r, srand - pseudo-random number generator
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/random.html">random</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n41">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/read.html">read</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.musl-libc.org/cgit/musl/tree/include/dirent.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/readdir.html">readdir</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>readdir, readdir_r - read a directory
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/dirent.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/readdir_r.html">readdir_r</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html">dirent.h</a><td>&#160;<td>readdir, readdir_r - read a directory
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlink.html">readlink</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>readlink, readlinkat - read the contents of a symbolic link relative to a directory file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlinkat.html">readlinkat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>readlink, readlinkat - read the contents of a symbolic link relative to a directory file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlink.html">readlink</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>readlink, readlinkat - read the contents of a symbolic link relative to a directory file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/readlinkat.html">readlinkat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>readlink, readlinkat - read the contents of a symbolic link relative to a directory file descriptor
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/uio.h#n24">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n36">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n107">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n263">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n265">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n267">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.musl-libc.org/cgit/musl/tree/include/regex.h#n52">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.musl-libc.org/cgit/musl/tree/include/regex.h#n56">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.musl-libc.org/cgit/musl/tree/include/regex.h#n53">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.musl-libc.org/cgit/musl/tree/include/regex.h#n54">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n108">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n276">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n278">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n280">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.musl-libc.org/cgit/musl/tree/include/regex.h#n53">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.musl-libc.org/cgit/musl/tree/include/regex.h#n57">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.musl-libc.org/cgit/musl/tree/include/regex.h#n54">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.musl-libc.org/cgit/musl/tree/include/regex.h#n55">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.musl-libc.org/cgit/musl/tree/include/math.h#n295">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n193">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n256">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.musl-libc.org/cgit/musl/tree/include/math.h#n296">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.musl-libc.org/cgit/musl/tree/include/math.h#n297">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.musl-libc.org/cgit/musl/tree/include/math.h#n303">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n195">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n258">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.musl-libc.org/cgit/musl/tree/include/math.h#n304">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.musl-libc.org/cgit/musl/tree/include/math.h#n305">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n58">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n59">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.musl-libc.org/cgit/musl/tree/include/math.h#n307">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n196">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n259">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.musl-libc.org/cgit/musl/tree/include/math.h#n308">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.musl-libc.org/cgit/musl/tree/include/math.h#n309">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.musl-libc.org/cgit/musl/tree/include/sched.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sched_setparam.html">sched_setparam</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_setparam - set scheduling parameters (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sched.h#n29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sched_setscheduler.html">sched_setscheduler</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_setscheduler - set scheduling policy and parameters (<b>REALTIME</b>)
 <tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sched.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sched_yield.html">sched_yield</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sched.h.html">sched.h</a><td>&#160;<td>sched_yield - yield the processor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n130">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/seed48.html">seed48</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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n131">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/seed48.html">seed48</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.musl-libc.org/cgit/musl/tree/include/dirent.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/seekdir.html">seekdir</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>seekdir - set the position of a directory stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/select.h#n32">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html">select</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.musl-libc.org/cgit/musl/tree/include/semaphore.h#n21">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sem_close.html">sem_close</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/semaphore.h.html">semaphore.h</a><td>&#160;<td>sem_close - close a named semaphore
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/sem.h#n63">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.musl-libc.org/cgit/musl/tree/include/sys/sem.h#n64">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.musl-libc.org/cgit/musl/tree/include/sys/sem.h#n65">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n262">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n266">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n264">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n275">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n279">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n277">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n117">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n111">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n112">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n95">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/seteuid.html">seteuid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>seteuid - set effective user ID
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setgid.html">setgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>setgid - set-group-ID
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setgrent.html">setgrent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endgrent, getgrent, setgrent - group database entry functions
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/seteuid.html">seteuid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>seteuid - set effective user ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n110">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setgid.html">setgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>setgid - set-group-ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/grp.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setgrent.html">setgrent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endgrent, getgrent, setgrent - group database entry functions
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n101">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sethostent.html">sethostent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endhostent, gethostent, sethostent - network host database functions
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/time.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setitimer.html">setitimer</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>getitimer, setitimer - get and set value of interval timer
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/setjmp.h#n36">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/setjmp.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setjmp.html">setjmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/setjmp.h.html">setjmp.h</a><td>&#160;<td>setjmp - set jump point for a non-local goto
-<tr><td>nosym<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n122">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setkey.html">setkey</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>setkey - set encoding key (<b>CRYPT</b>)
+<tr><td>nosym<td>&#160;<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n123">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setkey.html">setkey</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>setkey - set encoding key (<b>CRYPT</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setlocale.html">setlocale</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/locale.h.html">locale.h</a><td>&#160;<td>setlocale - set program locale
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/syslog.h#n61">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setlogmask.html">setlogmask</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>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n105">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setnetent.html">setnetent</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.musl-libc.org/cgit/musl/tree/include/unistd.h#n92">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setpgid.html">setpgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>setpgid - set process group ID for job control
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n140">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setpgrp.html">setpgrp</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>setpgrp - set the process group ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n93">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setpgid.html">setpgid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>setpgid - set process group ID for job control
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n141">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setpgrp.html">setpgrp</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#OB">OB</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>setpgrp - set the process group ID
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/resource.h#n56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setpriority.html">setpriority</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>getpriority, setpriority - get and set the nice value
 <tr><td>&#160;<td>TW<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/netdb.h#n117">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setprotoent.html">setprotoent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netdb.h.html">netdb.h</a><td>&#160;<td>endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/pwd.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setpwent.html">setpwent</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pwd.h.html">pwd.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>endpwent, getpwent, setpwent - user database functions
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n110">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setregid.html">setregid</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>setregid - set real and effective group IDs
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n107">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setreuid.html">setreuid</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>setreuid - set real and effective user IDs
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n111">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setregid.html">setregid</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>setregid - set real and effective group IDs
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setreuid.html">setreuid</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>setreuid - set real and effective user IDs
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/resource.h#n52">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.musl-libc.org/cgit/musl/tree/include/netdb.h#n111">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n93">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n270">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n111">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n106">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n94">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n283">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n112">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n107">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.musl-libc.org/cgit/musl/tree/include/utmpx.h#n39">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/setvbuf.html">setvbuf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>setvbuf - assign buffering to a stream
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/mman.h#n44">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/shm_open.html">shm_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#SHM">SHM</a><td>shm_open - open a shared memory object (<b>REALTIME</b>)
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/shm.h#n51">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.musl-libc.org/cgit/musl/tree/include/sys/shm.h#n52">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.musl-libc.org/cgit/musl/tree/include/sys/shm.h#n53">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n251">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n264">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.musl-libc.org/cgit/musl/tree/include/signal.h#n173">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.musl-libc.org/cgit/musl/tree/include/signal.h#n167">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.musl-libc.org/cgit/musl/tree/include/signal.h#n190">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n324">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.musl-libc.org/cgit/musl/tree/include/math.h#n325">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.musl-libc.org/cgit/musl/tree/include/math.h#n321">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n75">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n76">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n100">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n272">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n248">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n249">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n285">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n261">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.musl-libc.org/cgit/musl/tree/include/sys/socket.h#n262">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n99">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.musl-libc.org/cgit/musl/tree/include/math.h#n327">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n201">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n264">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.musl-libc.org/cgit/musl/tree/include/math.h#n328">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.musl-libc.org/cgit/musl/tree/include/math.h#n329">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n32">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n129">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n109">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n130">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n110">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sscanf.html">sscanf</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.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/stat.html">stat</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.musl-libc.org/cgit/musl/tree/include/sys/statvfs.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/statvfs.html">statvfs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_statvfs.h.html">sys/statvfs.h</a><td>&#160;<td>fstatvfs, statvfs - get file system information
 <tr><td>&#160;<td>R<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n55">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n51">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/stdout.html">stdout</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>stderr, stdin, stdout - standard I/O streams
 <tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n61">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/stpcpy.html">stpcpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>stpcpy, strcpy - copy a string and return a pointer to the end of the result
 <tr><td>&#160;<td>W<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/stpncpy.html">stpncpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>stpncpy, strncpy - copy fixed length string, returning a pointer to the array end
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strcasecmp.html">strcasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n86">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strcasecmp_l.html">strcasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n25">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strcasecmp.html">strcasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n86">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strcasecmp_l.html">strcasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strcat.html">strcat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>strcat - concatenate two strings
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n39">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strchr.html">strchr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>strchr - string scanning operation
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strcmp.html">strcmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>strcmp - compare two strings
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strftime.html">strftime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html">time.h</a><td>&#160;<td>strftime, strftime_l - convert date and time to a string
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n64">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strftime_l.html">strftime_l</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>strftime, strftime_l - convert date and time to a string
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strlen.html">strlen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>strlen, strnlen - get length of fixed size string
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strncasecmp.html">strncasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n87">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strncasecmp_l.html">strncasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n26">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strncasecmp.html">strncasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n87">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/strings.h#n29">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strncasecmp_l.html">strncasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html">strings.h</a><td>&#160;<td>strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n31">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strncat.html">strncat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>strncat - concatenate a string with part of another
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n34">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strncmp.html">strncmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>strncmp - compare part of two strings
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strncpy.html">strncpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>stpncpy, strncpy - copy fixed length string, returning a pointer to the array end
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/inttypes.h#n20">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strtoumax.html">strtoumax</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/inttypes.h.html">inttypes.h</a><td>&#160;<td>strtoimax, strtoumax - convert string to integer type
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n37">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strxfrm.html">strxfrm</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td>&#160;<td>strxfrm, strxfrm_l - string transformation
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/string.h#n69">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/strxfrm_l.html">strxfrm_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/string.h.html">string.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>strxfrm, strxfrm_l - string transformation
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n143">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/swab.html">swab</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>swab - swap bytes
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n100">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/swprintf.html">swprintf</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>fwprintf, swprintf, wprintf - print formatted wide-character output
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/swscanf.html">swscanf</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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/symlink.html">symlink</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>symlink, symlinkat - make a symbolic link relative to directory file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n53">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/symlinkat.html">symlinkat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>symlink, symlinkat - make a symbolic link relative to directory file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n136">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sync.html">sync</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>sync - schedule file system updates
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n124">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n144">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/swab.html">swab</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>swab - swap bytes
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n106">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/swprintf.html">swprintf</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>fwprintf, swprintf, wprintf - print formatted wide-character output
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n114">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/swscanf.html">swscanf</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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n53">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/symlink.html">symlink</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>symlink, symlinkat - make a symbolic link relative to directory file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/symlinkat.html">symlinkat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>symlink, symlinkat - make a symbolic link relative to directory file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n137">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/sync.html">sync</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>sync - schedule file system updates
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n125">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.musl-libc.org/cgit/musl/tree/include/syslog.h#n62">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.musl-libc.org/cgit/musl/tree/include/stdlib.h#n49">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.musl-libc.org/cgit/musl/tree/include/math.h#n331">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n202">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n265">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.musl-libc.org/cgit/musl/tree/include/termios.h#n33">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.musl-libc.org/cgit/musl/tree/include/termios.h#n32">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.musl-libc.org/cgit/musl/tree/include/termios.h#n27">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetattr.html">tcgetattr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>tcgetattr - get the parameters associated with the terminal
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetpgrp.html">tcgetpgrp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>tcgetpgrp - get the foreground process group ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n99">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetpgrp.html">tcgetpgrp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>tcgetpgrp - get the foreground process group ID
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/termios.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetsid.html">tcgetsid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>tcgetsid - get the process group ID for the session leader for the controlling terminal
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/termios.h#n30">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcsendbreak.html">tcsendbreak</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>tcsendbreak - send a break for a specific duration
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/termios.h#n28">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcsetattr.html">tcsetattr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/termios.h.html">termios.h</a><td>&#160;<td>tcsetattr - set the parameters associated with the terminal
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n99">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcsetpgrp.html">tcsetpgrp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>tcsetpgrp - set the foreground process group ID
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n100">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcsetpgrp.html">tcsetpgrp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>tcsetpgrp - set the foreground process group ID
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/search.h#n33">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tdelete.html">tdelete</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.musl-libc.org/cgit/musl/tree/include/dirent.h#n38">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.musl-libc.org/cgit/musl/tree/include/stdio.h#n153">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.musl-libc.org/cgit/musl/tree/include/ctype.h#n54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/toupper_l.html">toupper_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>toupper, toupper_l - transliterate lowercase characters to uppercase
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n39">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/towctrans.html">towctrans</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>towctrans, towctrans_l - wide-character transliteration
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/towctrans_l.html">towctrans_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>towctrans, towctrans_l - wide-character transliteration
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n165">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n40">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/towlower.html">towlower</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>towlower, towlower_l - transliterate uppercase wide-character code to lowercase
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n171">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n40">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/towlower.html">towlower</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>towlower, towlower_l - transliterate uppercase wide-character code to lowercase
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n64">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n166">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n41">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n172">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n41">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.musl-libc.org/cgit/musl/tree/include/wctype.h#n65">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.musl-libc.org/cgit/musl/tree/include/math.h#n343">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n205">d</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/tgmath.h#n268">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n59">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n60">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.musl-libc.org/cgit/musl/tree/include/math.h#n344">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.musl-libc.org/cgit/musl/tree/include/math.h#n345">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.musl-libc.org/cgit/musl/tree/include/search.h#n35">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n95">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n96">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n96">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.musl-libc.org/cgit/musl/tree/include/unistd.h#n97">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.musl-libc.org/cgit/musl/tree/include/search.h#n36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/twalk.html">twalk</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>V<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n107">x</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tzname.html">tzname</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>daylight, timezone, tzname, tzset - set timezone conversion information
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/time.h#n71">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/tzset.html">tzset</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>daylight, timezone, tzname, tzset - set timezone conversion information
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/stat.h#n80">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/umask.html">umask</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html">sys/stat.h</a><td>&#160;<td>umask - set and get the file mode creation mask
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/utsname.h#n24">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/uname.html">uname</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_utsname.h.html">sys/utsname.h</a><td>&#160;<td>uname - get the name of the current system
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n83">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ungetc.html">ungetc</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>ungetc - push byte back into input stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n125">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ungetwc.html">ungetwc</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>ungetwc - push wide-character code back into the input stream
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/unlink.html">unlink</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>unlink, unlinkat - remove a directory entry relative to directory file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n57">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/unlinkat.html">unlinkat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>unlink, unlinkat - remove a directory entry relative to directory file descriptor
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n118">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/unlockpt.html">unlockpt</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>unlockpt - unlock a pseudo-terminal master/slave pair
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n131">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/ungetwc.html">ungetwc</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>ungetwc - push wide-character code back into the input stream
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n57">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/unlink.html">unlink</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>unlink, unlinkat - remove a directory entry relative to directory file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n58">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/unlinkat.html">unlinkat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html">unistd.h</a><td>&#160;<td>unlink, unlinkat - remove a directory entry relative to directory file descriptor
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n119">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/unlockpt.html">unlockpt</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>unlockpt - unlock a pseudo-terminal master/slave pair
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n96">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/unsetenv.html">unsetenv</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>unsetenv - remove an environment variable
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/locale.h#n73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/uselocale.html">uselocale</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>uselocale - use locale in current thread
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/utime.h#n18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/utime.html">utime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/utime.h.html">utime.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#OB">OB</a><td>utime - set file access and modification times
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n134">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vdprintf.html">vdprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n103">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vfprintf.html">vfprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n111">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vfscanf.html">vfscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>vfscanf, vscanf, vsscanf - format input of a stdarg argument list
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n103">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vfwprintf.html">vfwprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n111">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vfwscanf.html">vfwscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n109">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vfwprintf.html">vfwprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n117">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vfwscanf.html">vfwscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n102">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vprintf.html">vprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n110">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vscanf.html">vscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>vfscanf, vscanf, vsscanf - format input of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n105">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vsnprintf.html">vsnprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vsprintf.html">vsprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdio.h#n112">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vsscanf.html">vsscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html">stdio.h</a><td>&#160;<td>vfscanf, vscanf, vsscanf - format input of a stdarg argument list
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vswprintf.html">vswprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n112">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vswscanf.html">vswscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n102">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vwprintf.html">vwprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n110">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vwscanf.html">vwscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n110">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vswprintf.html">vswprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n118">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vswscanf.html">vswscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n108">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vwprintf.html">vwprintf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n116">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/vwscanf.html">vwscanf</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdarg.h.html">stdarg.h</a> <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>vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/wait.h#n18">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wait.html">wait</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_wait.h.html">sys/wait.h</a><td>&#160;<td>wait, waitpid - wait for a child process to stop or terminate
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/wait.h#n19">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/waitid.html">waitid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_wait.h.html">sys/wait.h</a><td>&#160;<td>waitid - wait for a child process to change state
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/sys/wait.h#n20">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/waitpid.html">waitpid</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_wait.h.html">sys/wait.h</a><td>&#160;<td>wait, waitpid - wait for a child process to stop or terminate
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n139">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcpcpy.html">wcpcpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcpcpy, wcscpy - copy a wide-character string, returning a pointer to its end
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n140">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcpncpy.html">wcpncpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcpncpy, wcsncpy - copy a fixed-size wide-character string, returning a pointer to its end
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n76">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcrtomb.html">wcrtomb</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcrtomb - convert a wide-character code to a character (restartable)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n141">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp.html">wcscasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n142">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp_l.html">wcscasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscat.html">wcscat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscat - concatenate two wide-character strings
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcschr.html">wcschr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcschr - wide-character string scanning operation
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n45">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscmp.html">wcscmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscmp - compare two wide-character strings
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscoll.html">wcscoll</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscoll, wcscoll_l - wide-character string comparison using collating information
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n145">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscoll_l.html">wcscoll_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscoll, wcscoll_l - wide-character string comparison using collating information
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n39">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscpy.html">wcscpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcpcpy, wcscpy - copy a wide-character string, returning a pointer to its end
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscspn.html">wcscspn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscspn - get the length of a complementary wide substring
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n137">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsdup.html">wcsdup</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcsdup - duplicate a wide-character string
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n128">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsftime.html">wcsftime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsftime - convert date and time to a wide-character string
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcslen.html">wcslen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcslen, wcsnlen - get length of a fixed-sized wide-character string
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n143">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp.html">wcsncasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n144">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp_l.html">wcsncasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncat.html">wcsncat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsncat - concatenate a wide-character string with part of another
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncmp.html">wcsncmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsncmp - compare part of two wide-character strings
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n40">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncpy.html">wcsncpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcpncpy, wcsncpy - copy a fixed-size wide-character string, returning a pointer to its end
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n138">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsnlen.html">wcsnlen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcslen, wcsnlen - get length of a fixed-sized wide-character string
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n136">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsnrtombs.html">wcsnrtombs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcsnrtombs, wcsrtombs - convert a wide-character string to a character string (restartable)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n56">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcspbrk.html">wcspbrk</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcspbrk - scan a wide-character string for a wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsrchr.html">wcsrchr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsrchr - wide-character string scanning operation
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n81">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsrtombs.html">wcsrtombs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsnrtombs, wcsrtombs - convert a wide-character string to a character string (restartable)
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsspn.html">wcsspn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsspn - get the length of a wide substring
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsstr.html">wcsstr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsstr - find a wide-character substring
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n84">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstod.html">wcstod</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n83">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstof.html">wcstof</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n145">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcpcpy.html">wcpcpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcpcpy, wcscpy - copy a wide-character string, returning a pointer to its end
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n146">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcpncpy.html">wcpncpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcpncpy, wcsncpy - copy a fixed-size wide-character string, returning a pointer to its end
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n82">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcrtomb.html">wcrtomb</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcrtomb - convert a wide-character code to a character (restartable)
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n147">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp.html">wcscasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n148">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp_l.html">wcscasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n48">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscat.html">wcscat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscat - concatenate two wide-character strings
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n57">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcschr.html">wcschr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcschr - wide-character string scanning operation
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n51">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscmp.html">wcscmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscmp - compare two wide-character strings
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n54">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscoll.html">wcscoll</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscoll, wcscoll_l - wide-character string comparison using collating information
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n151">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscoll_l.html">wcscoll_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscoll, wcscoll_l - wide-character string comparison using collating information
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n45">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscpy.html">wcscpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcpcpy, wcscpy - copy a wide-character string, returning a pointer to its end
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n60">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcscspn.html">wcscspn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcscspn - get the length of a complementary wide substring
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n143">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsdup.html">wcsdup</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcsdup - duplicate a wide-character string
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n134">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsftime.html">wcsftime</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsftime - convert date and time to a wide-character string
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcslen.html">wcslen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcslen, wcsnlen - get length of a fixed-sized wide-character string
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n149">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp.html">wcsncasecmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n150">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp_l.html">wcsncasecmp_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncat.html">wcsncat</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsncat - concatenate a wide-character string with part of another
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n52">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncmp.html">wcsncmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsncmp - compare part of two wide-character strings
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n46">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsncpy.html">wcsncpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcpncpy, wcsncpy - copy a fixed-size wide-character string, returning a pointer to its end
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n144">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsnlen.html">wcsnlen</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcslen, wcsnlen - get length of a fixed-sized wide-character string
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n142">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsnrtombs.html">wcsnrtombs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcsnrtombs, wcsrtombs - convert a wide-character string to a character string (restartable)
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n62">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcspbrk.html">wcspbrk</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcspbrk - scan a wide-character string for a wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n58">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsrchr.html">wcsrchr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsrchr - wide-character string scanning operation
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n87">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsrtombs.html">wcsrtombs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsnrtombs, wcsrtombs - convert a wide-character string to a character string (restartable)
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n61">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsspn.html">wcsspn</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsspn - get the length of a wide substring
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n68">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsstr.html">wcsstr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsstr - find a wide-character substring
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n90">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstod.html">wcstod</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n89">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstof.html">wcstof</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/inttypes.h#n22">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoimax.html">wcstoimax</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stddef.h.html">stddef.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/inttypes.h.html">inttypes.h</a><td>&#160;<td>wcstoimax, wcstoumax - convert a wide-character string to an integer type
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n58">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstok.html">wcstok</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstok - split a wide-character string into tokens
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n87">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstol.html">wcstol</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstol, wcstoll - convert a wide-character string to a long integer
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n85">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstold.html">wcstold</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n90">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoll.html">wcstoll</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstol, wcstoll - convert a wide-character string to a long integer
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n64">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstok.html">wcstok</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstok - split a wide-character string into tokens
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n93">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstol.html">wcstol</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstol, wcstoll - convert a wide-character string to a long integer
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n91">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstold.html">wcstold</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n96">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoll.html">wcstoll</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstol, wcstoll - convert a wide-character string to a long integer
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n70">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstombs.html">wcstombs</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>wcstombs - convert a wide-character string to a character string
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n88">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoul.html">wcstoul</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstoul, wcstoull - convert a wide-character string to an unsigned long
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n91">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoull.html">wcstoull</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstoul, wcstoull - convert a wide-character string to an unsigned long
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n94">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoul.html">wcstoul</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstoul, wcstoull - convert a wide-character string to an unsigned long
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n97">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoull.html">wcstoull</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcstoul, wcstoull - convert a wide-character string to an unsigned long
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/inttypes.h#n23">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstoumax.html">wcstoumax</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stddef.h.html">stddef.h</a> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/inttypes.h.html">inttypes.h</a><td>&#160;<td>wcstoimax, wcstoumax - convert a wide-character string to an integer type
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n151">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcswidth.html">wcswidth</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>wcswidth - number of column positions of a wide-character string
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n49">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm.html">wcsxfrm</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsxfrm, wcsxfrm_l - wide-character string transformation
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n146">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm_l.html">wcsxfrm_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcsxfrm, wcsxfrm_l - wide-character string transformation
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n72">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctob.html">wctob</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>wctob - wide-character to single-byte conversion
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n157">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcswidth.html">wcswidth</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>wcswidth - number of column positions of a wide-character string
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n55">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm.html">wcsxfrm</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wcsxfrm, wcsxfrm_l - wide-character string transformation
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n152">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm_l.html">wcsxfrm_l</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#CX">CX</a><td>wcsxfrm, wcsxfrm_l - wide-character string transformation
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n78">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctob.html">wctob</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>wctob - wide-character to single-byte conversion
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/stdlib.h#n68">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctomb.html">wctomb</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html">stdlib.h</a><td>&#160;<td>wctomb - convert a wide-character code to a character
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n42">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctrans.html">wctrans</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>wctrans, wctrans_l - define character mapping
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n67">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctrans_l.html">wctrans_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>wctrans, wctrans_l - define character mapping
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n167">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctype.html">wctype</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>wctype, wctype_l - define character class
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n173">p</a> <a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n43">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctype.html">wctype</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wctype.h.html">wctype.h</a><td>&#160;<td>wctype, wctype_l - define character class
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wctype.h#n68">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wctype_l.html">wctype_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>wctype, wctype_l - define character class
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n150">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcwidth.html">wcwidth</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>wcwidth - number of column positions of a wide-character code
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n65">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemchr.html">wmemchr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemchr - find a wide character in memory
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n66">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemcmp.html">wmemcmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemcmp - compare wide characters in memory
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n67">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemcpy.html">wmemcpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemcpy - copy wide characters in memory
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n68">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemmove.html">wmemmove</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemmove - copy wide characters in memory with overlapping areas
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n69">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemset.html">wmemset</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemset - set wide characters in memory
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n156">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wcwidth.html">wcwidth</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/help/codes.html#XSI">XSI</a><td>wcwidth - number of column positions of a wide-character code
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n71">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemchr.html">wmemchr</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemchr - find a wide character in memory
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n72">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemcmp.html">wmemcmp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemcmp - compare wide characters in memory
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n73">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemcpy.html">wmemcpy</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemcpy - copy wide characters in memory
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n74">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemmove.html">wmemmove</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemmove - copy wide characters in memory with overlapping areas
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n75">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wmemset.html">wmemset</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wchar.h.html">wchar.h</a><td>&#160;<td>wmemset - set wide characters in memory
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wordexp.h#n35">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wordexp.html">wordexp</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wordexp.h.html">wordexp.h</a><td>&#160;<td>wordexp, wordfree - perform word expansions
 <tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wordexp.h#n36">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wordfree.html">wordfree</a><td> <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/wordexp.h.html">wordexp.h</a><td>&#160;<td>wordexp, wordfree - perform word expansions
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n98">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wprintf.html">wprintf</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>fwprintf, swprintf, wprintf - print formatted wide-character output
-<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n41">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n104">p</a> <td><a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/wprintf.html">wprintf</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>fwprintf, swprintf, wprintf - print formatted wide-character output
+<tr><td>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/unistd.h#n42">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.musl-libc.org/cgit/musl/tree/include/sys/uio.h#n25">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.musl-libc.org/cgit/musl/tree/include/wchar.h#n106">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/wchar.h#n112">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>&#160;<td>T<td><a href="http://git.musl-libc.org/cgit/musl/tree/include/math.h#n374">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.musl-libc.org/cgit/musl/tree/include/math.h#n375">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.musl-libc.org/cgit/musl/tree/include/math.h#n376">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