From 79ec67fc3b789b5215d03246b991f176077c2fac Mon Sep 17 00:00:00 2001 From: nsz Date: Tue, 13 Mar 2012 06:41:50 +0100 Subject: [PATCH] update tables (new libm) --- data/musl.problems | 4 +- tab_c99.html | 628 ++++++++++++++++++++++----------------------- tab_posix.html | 516 ++++++++++++++++++------------------- 3 files changed, 575 insertions(+), 573 deletions(-) diff --git a/data/musl.problems b/data/musl.problems index d7b1967..1433a1f 100644 --- a/data/musl.problems +++ b/data/musl.problems @@ -2,6 +2,9 @@ proto basename string.h libgen.h char *basename(); char *basename(char *); proto basename string.h char*() char*(char*) char *basename(); char *basename(char *path); nodecl cfmakeraw T nodecl cfsetspeed W +proto cimag complex/cimag.c complex.h double()(double complex) double(double complex) +proto cimagf complex/cimagf.c complex.h float()(float complex) float(float complex) +proto cimagl complex/cimagl.c complex.h long double()(long double complex) long double(long double complex) nodecl clearerr_unlocked W nodecl crypt_r W nodecl daemon T @@ -30,7 +33,6 @@ nodecl putw T nodecl putwc_unlocked W nodecl putwchar_unlocked W proto qsort stdlib/qsort.c stdlib.h void(void*,size_t,size_t,) void(void*,size_t,size_t,int(*)(const void*,const void*)) -nodecl scalbf T proto seed48 prng/seed48.c stdlib.h unsigned short*(unsigned short*) unsigned short*(unsigned short[]) proto setgroups unistd.h grp.h int setgroups(size_t, const gid_t []); int setgroups(size_t, const gid_t *); proto setgroups linux/setgroups.c grp.h int(size_t,const gid_t[]) int(size_t,const gid_t*) diff --git a/tab_c99.html b/tab_c99.html index 7e57f1b..4df130f 100644 --- a/tab_c99.html +++ b/tab_c99.html @@ -1,80 +1,80 @@

musl vs c99 api

-

commit

commit 405ce58dcf59ecfb3e245fed0b96b1f35fbeaec1
Date: Fri Mar 2 22:35:37 2012 -0500

fix nan/infinity macros in math.h, etc.

the previous version not only failed to work in c++, but also failed
to produce constant expressions, making the macros useless as
initializers for objects of static storage duration.

gcc 3.3 and later have builtins for these, which sadly seem to be the
most "portable" solution. the alternative definitions produce
exceptions (for NAN) and compiler warnings (for INFINITY) on newer
versions of gcc. +

commit

commit b69f695acedd4ce2798ef9ea28d834ceccc789bd
Date: Tue Mar 13 01:17:53 2012 -0400

first commit of the new libm!

thanks to the hard work of Szabolcs Nagy (nsz), identifying the best
(from correctness and license standpoint) implementations from freebsd
and openbsd and cleaning them up! musl should now fully support c99
float and long double math functions, and has near-complete complex
math support. tgmath should also work (fully on gcc-compatible
compilers, and mostly on any c99 compiler).

based largely on commit 0376d44a890fea261506f1fc63833e7a686dca19 from
nsz's libm git repo, with some additions (dummy versions of a few
missing long double complex functions, etc.) by me.

various cleanups still need to be made, including re-adding (if
they're correct) some asm functions that were dropped.

legend

table

muslc99
statussymdeclnameheaderprotosection
missing  NDEBUGassert.h B.1 Diagnostics
  d d d assertassert.hvoid assert(scalar expression);B.1 Diagnostics -
missing  complexcomplex.h B.2 Complex +
  d complexcomplex.h B.2 Complex
missing  imaginarycomplex.h B.2 Complex -
missing  Icomplex.h B.2 Complex -
missing  _Complex_Icomplex.h B.2 Complex +
  d Icomplex.h B.2 Complex +
  d _Complex_Icomplex.h B.2 Complex
missing  _Imaginary_Icomplex.h B.2 Complex -
missing  cacoscomplex.hdouble complex cacos(double complex z);B.2 Complex -
missing  cacosfcomplex.hfloat complex cacosf(float complex z);B.2 Complex -
missing  cacoslcomplex.hlong double complex cacosl(long double complex z);B.2 Complex -
missing  casincomplex.hdouble complex casin(double complex z);B.2 Complex -
missing  casinfcomplex.hfloat complex casinf(float complex z);B.2 Complex -
missing  casinlcomplex.hlong double complex casinl(long double complex z);B.2 Complex -
missing  catancomplex.hdouble complex catan(double complex z);B.2 Complex -
missing  catanfcomplex.hfloat complex catanf(float complex z);B.2 Complex -
missing  catanlcomplex.hlong double complex catanl(long double complex z);B.2 Complex -
missing  ccoscomplex.hdouble complex ccos(double complex z);B.2 Complex -
missing  ccosfcomplex.hfloat complex ccosf(float complex z);B.2 Complex -
missing  ccoslcomplex.hlong double complex ccosl(long double complex z);B.2 Complex -
missing  csincomplex.hdouble complex csin(double complex z);B.2 Complex -
missing  csinfcomplex.hfloat complex csinf(float complex z);B.2 Complex -
missing  csinlcomplex.hlong double complex csinl(long double complex z);B.2 Complex -
missing  ctancomplex.hdouble complex ctan(double complex z);B.2 Complex -
missing  ctanfcomplex.hfloat complex ctanf(float complex z);B.2 Complex -
missing  ctanlcomplex.hlong double complex ctanl(long double complex z);B.2 Complex -
missing  cacoshcomplex.hdouble complex cacosh(double complex z);B.2 Complex -
missing  cacoshfcomplex.hfloat complex cacoshf(float complex z);B.2 Complex -
missing  cacoshlcomplex.hlong double complex cacoshl(long double complex z);B.2 Complex -
missing  casinhcomplex.hdouble complex casinh(double complex z);B.2 Complex -
missing  casinhfcomplex.hfloat complex casinhf(float complex z);B.2 Complex -
missing  casinhlcomplex.hlong double complex casinhl(long double complex z);B.2 Complex -
missing  catanhcomplex.hdouble complex catanh(double complex z);B.2 Complex -
missing  catanhfcomplex.hfloat complex catanhf(float complex z);B.2 Complex -
missing  catanhlcomplex.hlong double complex catanhl(long double complex z);B.2 Complex -
missing  ccoshcomplex.hdouble complex ccosh(double complex z);B.2 Complex -
missing  ccoshfcomplex.hfloat complex ccoshf(float complex z);B.2 Complex -
missing  ccoshlcomplex.hlong double complex ccoshl(long double complex z);B.2 Complex -
missing  csinhcomplex.hdouble complex csinh(double complex z);B.2 Complex -
missing  csinhfcomplex.hfloat complex csinhf(float complex z);B.2 Complex -
missing  csinhlcomplex.hlong double complex csinhl(long double complex z);B.2 Complex -
missing  ctanhcomplex.hdouble complex ctanh(double complex z);B.2 Complex -
missing  ctanhfcomplex.hfloat complex ctanhf(float complex z);B.2 Complex -
missing  ctanhlcomplex.hlong double complex ctanhl(long double complex z);B.2 Complex -
missing  cexpcomplex.hdouble complex cexp(double complex z);B.2 Complex -
missing  cexpfcomplex.hfloat complex cexpf(float complex z);B.2 Complex -
missing  cexplcomplex.hlong double complex cexpl(long double complex z);B.2 Complex -
missing  clogcomplex.hdouble complex clog(double complex z);B.2 Complex -
missing  clogfcomplex.hfloat complex clogf(float complex z);B.2 Complex -
missing  cloglcomplex.hlong double complex clogl(long double complex z);B.2 Complex -
missing  cabscomplex.hdouble cabs(double complex z);B.2 Complex -
missing  cabsfcomplex.hfloat cabsf(float complex z);B.2 Complex -
missing  cabslcomplex.hlong double cabsl(long double complex z);B.2 Complex -
missing  cpowcomplex.hdouble complex cpow(double complex x, double complex y);B.2 Complex -
missing  cpowfcomplex.hfloat complex cpowf(float complex x, float complex y);B.2 Complex -
missing  cpowlcomplex.hlong double complex cpowl(long double complex x, long double complex y);B.2 Complex -
missing  csqrtcomplex.hdouble complex csqrt(double complex z);B.2 Complex -
missing  csqrtfcomplex.hfloat complex csqrtf(float complex z);B.2 Complex -
missing  csqrtlcomplex.hlong double complex csqrtl(long double complex z);B.2 Complex -
missing  cargcomplex.hdouble carg(double complex z);B.2 Complex -
missing  cargfcomplex.hfloat cargf(float complex z);B.2 Complex -
missing  carglcomplex.hlong double cargl(long double complex z);B.2 Complex -
missing  cimagcomplex.hdouble cimag(double complex z);B.2 Complex -
missing  cimagfcomplex.hfloat cimagf(float complex z);B.2 Complex -
missing  cimaglcomplex.hlong double cimagl(long double complex z);B.2 Complex -
missing  conjcomplex.hdouble complex conj(double complex z);B.2 Complex -
missing  conjfcomplex.hfloat complex conjf(float complex z);B.2 Complex -
missing  conjlcomplex.hlong double complex conjl(long double complex z);B.2 Complex -
missing  cprojcomplex.hdouble complex cproj(double complex z);B.2 Complex -
missing  cprojfcomplex.hfloat complex cprojf(float complex z);B.2 Complex -
missing  cprojlcomplex.hlong double complex cprojl(long double complex z);B.2 Complex -
missing  crealcomplex.hdouble creal(double complex z);B.2 Complex -
missing  crealfcomplex.hfloat crealf(float complex z);B.2 Complex -
missing  creallcomplex.hlong double creall(long double complex z);B.2 Complex +
 Tp cacoscomplex.hdouble complex cacos(double complex z);B.2 Complex +
 Tp cacosfcomplex.hfloat complex cacosf(float complex z);B.2 Complex +
 Tp cacoslcomplex.hlong double complex cacosl(long double complex z);B.2 Complex +
 Tp casincomplex.hdouble complex casin(double complex z);B.2 Complex +
 Tp casinfcomplex.hfloat complex casinf(float complex z);B.2 Complex +
 Tp casinlcomplex.hlong double complex casinl(long double complex z);B.2 Complex +
 Tp catancomplex.hdouble complex catan(double complex z);B.2 Complex +
 Tp catanfcomplex.hfloat complex catanf(float complex z);B.2 Complex +
 Tp catanlcomplex.hlong double complex catanl(long double complex z);B.2 Complex +
 Tp ccoscomplex.hdouble complex ccos(double complex z);B.2 Complex +
 Tp ccosfcomplex.hfloat complex ccosf(float complex z);B.2 Complex +
 Tp ccoslcomplex.hlong double complex ccosl(long double complex z);B.2 Complex +
 Tp csincomplex.hdouble complex csin(double complex z);B.2 Complex +
 Tp csinfcomplex.hfloat complex csinf(float complex z);B.2 Complex +
 Tp csinlcomplex.hlong double complex csinl(long double complex z);B.2 Complex +
 Tp ctancomplex.hdouble complex ctan(double complex z);B.2 Complex +
 Tp ctanfcomplex.hfloat complex ctanf(float complex z);B.2 Complex +
 Tp ctanlcomplex.hlong double complex ctanl(long double complex z);B.2 Complex +
 Tp cacoshcomplex.hdouble complex cacosh(double complex z);B.2 Complex +
 Tp cacoshfcomplex.hfloat complex cacoshf(float complex z);B.2 Complex +
 Tp cacoshlcomplex.hlong double complex cacoshl(long double complex z);B.2 Complex +
 Tp casinhcomplex.hdouble complex casinh(double complex z);B.2 Complex +
 Tp casinhfcomplex.hfloat complex casinhf(float complex z);B.2 Complex +
 Tp casinhlcomplex.hlong double complex casinhl(long double complex z);B.2 Complex +
 Tp catanhcomplex.hdouble complex catanh(double complex z);B.2 Complex +
 Tp catanhfcomplex.hfloat complex catanhf(float complex z);B.2 Complex +
 Tp catanhlcomplex.hlong double complex catanhl(long double complex z);B.2 Complex +
 Tp ccoshcomplex.hdouble complex ccosh(double complex z);B.2 Complex +
 Tp ccoshfcomplex.hfloat complex ccoshf(float complex z);B.2 Complex +
 Tp ccoshlcomplex.hlong double complex ccoshl(long double complex z);B.2 Complex +
 Tp csinhcomplex.hdouble complex csinh(double complex z);B.2 Complex +
 Tp csinhfcomplex.hfloat complex csinhf(float complex z);B.2 Complex +
 Tp csinhlcomplex.hlong double complex csinhl(long double complex z);B.2 Complex +
 Tp ctanhcomplex.hdouble complex ctanh(double complex z);B.2 Complex +
 Tp ctanhfcomplex.hfloat complex ctanhf(float complex z);B.2 Complex +
 Tp ctanhlcomplex.hlong double complex ctanhl(long double complex z);B.2 Complex +
 Tp cexpcomplex.hdouble complex cexp(double complex z);B.2 Complex +
 Tp cexpfcomplex.hfloat complex cexpf(float complex z);B.2 Complex +
 Tp cexplcomplex.hlong double complex cexpl(long double complex z);B.2 Complex +
 Tp clogcomplex.hdouble complex clog(double complex z);B.2 Complex +
 Tp clogfcomplex.hfloat complex clogf(float complex z);B.2 Complex +
 Tp cloglcomplex.hlong double complex clogl(long double complex z);B.2 Complex +
 Tp cabscomplex.hdouble cabs(double complex z);B.2 Complex +
 Tp cabsfcomplex.hfloat cabsf(float complex z);B.2 Complex +
 Tp cabslcomplex.hlong double cabsl(long double complex z);B.2 Complex +
 Tp cpowcomplex.hdouble complex cpow(double complex x, double complex y);B.2 Complex +
 Tp cpowfcomplex.hfloat complex cpowf(float complex x, float complex y);B.2 Complex +
 Tp cpowlcomplex.hlong double complex cpowl(long double complex x, long double complex y);B.2 Complex +
 Tp csqrtcomplex.hdouble complex csqrt(double complex z);B.2 Complex +
 Tp csqrtfcomplex.hfloat complex csqrtf(float complex z);B.2 Complex +
 Tp csqrtlcomplex.hlong double complex csqrtl(long double complex z);B.2 Complex +
 Tp d cargcomplex.hdouble carg(double complex z);B.2 Complex +
 Tp cargfcomplex.hfloat cargf(float complex z);B.2 Complex +
 Tp carglcomplex.hlong double cargl(long double complex z);B.2 Complex +
 Tp d cimagcomplex.hdouble cimag(double complex z);B.2 Complex +
 Tp cimagfcomplex.hfloat cimagf(float complex z);B.2 Complex +
 Tp cimaglcomplex.hlong double cimagl(long double complex z);B.2 Complex +
 Tp d conjcomplex.hdouble complex conj(double complex z);B.2 Complex +
 Tp conjfcomplex.hfloat complex conjf(float complex z);B.2 Complex +
 Tp conjlcomplex.hlong double complex conjl(long double complex z);B.2 Complex +
 Tp d cprojcomplex.hdouble complex cproj(double complex z);B.2 Complex +
 Tp cprojfcomplex.hfloat complex cprojf(float complex z);B.2 Complex +
 Tp cprojlcomplex.hlong double complex cprojl(long double complex z);B.2 Complex +
 Tp d crealcomplex.hdouble creal(double complex z);B.2 Complex +
 Tp crealfcomplex.hfloat crealf(float complex z);B.2 Complex +
 Tp creallcomplex.hlong double creall(long double complex z);B.2 Complex
 Tp isalnumctype.hint isalnum(int c);B.3 Character handling
 Td p isalphactype.hint isalpha(int c);B.3 Character handling
 Tp isblankctype.hint isblank(int c);B.3 Character handling @@ -369,189 +369,189 @@
  d math_errhandlingmath.h B.11 Mathematics
  d d NANmath.h B.11 Mathematics
missing  FP_FAST_FMAFmath.h B.11 Mathematics -
  d fpclassifymath.hint fpclassify(real-floating x);B.11 Mathematics -
  d isfinitemath.hint isfinite(real-floating x);B.11 Mathematics -
  d isinfmath.hint isinf(real-floating x);B.11 Mathematics -
  d isnanmath.hint isnan(real-floating x);B.11 Mathematics -
  d isnormalmath.hint isnormal(real-floating x);B.11 Mathematics -
missing  signbitmath.hint signbit(real-floating x);B.11 Mathematics -
 Tp acosmath.hdouble acos(double x);B.11 Mathematics -
 Tp acosfmath.hfloat acosf(float x);B.11 Mathematics -
nosym p acoslmath.hlong double acosl(long double x);B.11 Mathematics -
 Tp asinmath.hdouble asin(double x);B.11 Mathematics -
 Tp asinfmath.hfloat asinf(float x);B.11 Mathematics -
nosym p asinlmath.hlong double asinl(long double x);B.11 Mathematics -
 Tp atanmath.hdouble atan(double x);B.11 Mathematics -
 Tp atanfmath.hfloat atanf(float x);B.11 Mathematics -
nosym p atanlmath.hlong double atanl(long double x);B.11 Mathematics -
 Tp atan2math.hdouble atan2(double y, double x);B.11 Mathematics -
 Tp atan2fmath.hfloat atan2f(float y, float x);B.11 Mathematics -
nosym p atan2lmath.hlong double atan2l(long double y, long double x);B.11 Mathematics -
 Tp cosmath.hdouble cos(double x);B.11 Mathematics -
 Tp cosfmath.hfloat cosf(float x);B.11 Mathematics -
nosym p coslmath.hlong double cosl(long double x);B.11 Mathematics -
 Tp sinmath.hdouble sin(double x);B.11 Mathematics -
 Tp sinfmath.hfloat sinf(float x);B.11 Mathematics -
nosym p sinlmath.hlong double sinl(long double x);B.11 Mathematics -
 Tp tanmath.hdouble tan(double x);B.11 Mathematics -
 Tp tanfmath.hfloat tanf(float x);B.11 Mathematics -
nosym p tanlmath.hlong double tanl(long double x);B.11 Mathematics -
 Tp acoshmath.hdouble acosh(double x);B.11 Mathematics -
 Tp acoshfmath.hfloat acoshf(float x);B.11 Mathematics -
nosym p acoshlmath.hlong double acoshl(long double x);B.11 Mathematics -
 Tp asinhmath.hdouble asinh(double x);B.11 Mathematics -
 Tp asinhfmath.hfloat asinhf(float x);B.11 Mathematics -
nosym p asinhlmath.hlong double asinhl(long double x);B.11 Mathematics -
 Tp atanhmath.hdouble atanh(double x);B.11 Mathematics -
 Tp atanhfmath.hfloat atanhf(float x);B.11 Mathematics -
nosym p atanhlmath.hlong double atanhl(long double x);B.11 Mathematics -
 Tp coshmath.hdouble cosh(double x);B.11 Mathematics -
 Tp coshfmath.hfloat coshf(float x);B.11 Mathematics -
nosym p coshlmath.hlong double coshl(long double x);B.11 Mathematics -
 Tp sinhmath.hdouble sinh(double x);B.11 Mathematics -
 Tp sinhfmath.hfloat sinhf(float x);B.11 Mathematics -
nosym p sinhlmath.hlong double sinhl(long double x);B.11 Mathematics -
 Tp tanhmath.hdouble tanh(double x);B.11 Mathematics -
 Tp tanhfmath.hfloat tanhf(float x);B.11 Mathematics -
nosym p tanhlmath.hlong double tanhl(long double x);B.11 Mathematics -
 Tp expmath.hdouble exp(double x);B.11 Mathematics -
 Tp expfmath.hfloat expf(float x);B.11 Mathematics -
nosym p explmath.hlong double expl(long double x);B.11 Mathematics -
nosym p exp2math.hdouble exp2(double x);B.11 Mathematics -
nosym p exp2fmath.hfloat exp2f(float x);B.11 Mathematics -
nosym p exp2lmath.hlong double exp2l(long double x);B.11 Mathematics -
 Tp expm1math.hdouble expm1(double x);B.11 Mathematics -
 Tp expm1fmath.hfloat expm1f(float x);B.11 Mathematics -
nosym p expm1lmath.hlong double expm1l(long double x);B.11 Mathematics -
 Tp frexpmath.hdouble frexp(double value, int *exp);B.11 Mathematics -
 Tp frexpfmath.hfloat frexpf(float value, int *exp);B.11 Mathematics -
 Tp frexplmath.hlong double frexpl(long double value, int *exp);B.11 Mathematics -
 Tp ilogbmath.hint ilogb(double x);B.11 Mathematics -
 Tp ilogbfmath.hint ilogbf(float x);B.11 Mathematics -
nosym p ilogblmath.hint ilogbl(long double x);B.11 Mathematics -
 Tp ldexpmath.hdouble ldexp(double x, int exp);B.11 Mathematics -
 Tp ldexpfmath.hfloat ldexpf(float x, int exp);B.11 Mathematics -
nosym p ldexplmath.hlong double ldexpl(long double x, int exp);B.11 Mathematics -
 Tp logmath.hdouble log(double x);B.11 Mathematics -
 Tp logfmath.hfloat logf(float x);B.11 Mathematics -
nosym p loglmath.hlong double logl(long double x);B.11 Mathematics -
 Tp log10math.hdouble log10(double x);B.11 Mathematics -
 Tp log10fmath.hfloat log10f(float x);B.11 Mathematics -
nosym p log10lmath.hlong double log10l(long double x);B.11 Mathematics -
 Tp log1pmath.hdouble log1p(double x);B.11 Mathematics -
 Tp log1pfmath.hfloat log1pf(float x);B.11 Mathematics -
nosym p log1plmath.hlong double log1pl(long double x);B.11 Mathematics -
nosym p log2math.hdouble log2(double x);B.11 Mathematics -
nosym p log2fmath.hfloat log2f(float x);B.11 Mathematics -
nosym p log2lmath.hlong double log2l(long double x);B.11 Mathematics -
 Tp logbmath.hdouble logb(double x);B.11 Mathematics -
 Tp logbfmath.hfloat logbf(float x);B.11 Mathematics -
nosym p logblmath.hlong double logbl(long double x);B.11 Mathematics -
 Tp modfmath.hdouble modf(double value, double *iptr);B.11 Mathematics -
 Tp modffmath.hfloat modff(float value, float *iptr);B.11 Mathematics -
nosym p modflmath.hlong double modfl(long double value, long double *iptr);B.11 Mathematics -
 Tp scalbnmath.hdouble scalbn(double x, int n);B.11 Mathematics -
 Tp scalbnfmath.hfloat scalbnf(float x, int n);B.11 Mathematics -
nosym p scalbnlmath.hlong double scalbnl(long double x, int n);B.11 Mathematics -
 Tp scalblnmath.hdouble scalbln(double x, long int n);B.11 Mathematics -
 Tp scalblnfmath.hfloat scalblnf(float x, long int n);B.11 Mathematics -
nosym p scalblnlmath.hlong double scalblnl(long double x, long int n);B.11 Mathematics -
 Tp cbrtmath.hdouble cbrt(double x);B.11 Mathematics -
 Tp cbrtfmath.hfloat cbrtf(float x);B.11 Mathematics -
nosym p cbrtlmath.hlong double cbrtl(long double x);B.11 Mathematics -
 Tp fabsmath.hdouble fabs(double x);B.11 Mathematics -
 Tp fabsfmath.hfloat fabsf(float x);B.11 Mathematics -
nosym p fabslmath.hlong double fabsl(long double x);B.11 Mathematics -
 Tp hypotmath.hdouble hypot(double x, double y);B.11 Mathematics -
 Tp hypotfmath.hfloat hypotf(float x, float y);B.11 Mathematics -
nosym p hypotlmath.hlong double hypotl(long double x, long double y);B.11 Mathematics -
 Tp powmath.hdouble pow(double x, double y);B.11 Mathematics -
 Tp powfmath.hfloat powf(float x, float y);B.11 Mathematics -
nosym p powlmath.hlong double powl(long double x, long double y);B.11 Mathematics -
 Tp sqrtmath.hdouble sqrt(double x);B.11 Mathematics -
 Tp sqrtfmath.hfloat sqrtf(float x);B.11 Mathematics -
nosym p sqrtlmath.hlong double sqrtl(long double x);B.11 Mathematics -
 Tp erfmath.hdouble erf(double x);B.11 Mathematics -
 Tp erffmath.hfloat erff(float x);B.11 Mathematics -
nosym p erflmath.hlong double erfl(long double x);B.11 Mathematics -
 Tp erfcmath.hdouble erfc(double x);B.11 Mathematics -
 Tp erfcfmath.hfloat erfcf(float x);B.11 Mathematics -
nosym p erfclmath.hlong double erfcl(long double x);B.11 Mathematics -
nosym p lgammamath.hdouble lgamma(double x);B.11 Mathematics -
nosym p lgammafmath.hfloat lgammaf(float x);B.11 Mathematics -
nosym p lgammalmath.hlong double lgammal(long double x);B.11 Mathematics -
nosym p tgammamath.hdouble tgamma(double x);B.11 Mathematics -
nosym p tgammafmath.hfloat tgammaf(float x);B.11 Mathematics -
nosym p tgammalmath.hlong double tgammal(long double x);B.11 Mathematics -
 Tp ceilmath.hdouble ceil(double x);B.11 Mathematics -
 Tp ceilfmath.hfloat ceilf(float x);B.11 Mathematics -
nosym p ceillmath.hlong double ceill(long double x);B.11 Mathematics -
 Tp floormath.hdouble floor(double x);B.11 Mathematics -
 Tp floorfmath.hfloat floorf(float x);B.11 Mathematics -
nosym p floorlmath.hlong double floorl(long double x);B.11 Mathematics -
nosym p nearbyintmath.hdouble nearbyint(double x);B.11 Mathematics -
nosym p nearbyintfmath.hfloat nearbyintf(float x);B.11 Mathematics -
nosym p nearbyintlmath.hlong double nearbyintl(long double x);B.11 Mathematics -
 Tp rintmath.hdouble rint(double x);B.11 Mathematics -
 Tp rintfmath.hfloat rintf(float x);B.11 Mathematics -
nosym p rintlmath.hlong double rintl(long double x);B.11 Mathematics -
 Tp lrintmath.hlong int lrint(double x);B.11 Mathematics -
 Tp lrintfmath.hlong int lrintf(float x);B.11 Mathematics -
nosym p lrintlmath.hlong int lrintl(long double x);B.11 Mathematics -
 Tp llrintmath.hlong long int llrint(double x);B.11 Mathematics -
nosym p llrintfmath.hlong long int llrintf(float x);B.11 Mathematics -
nosym p llrintlmath.hlong long int llrintl(long double x);B.11 Mathematics -
 Tp roundmath.hdouble round(double x);B.11 Mathematics -
 Tp roundfmath.hfloat roundf(float x);B.11 Mathematics -
nosym p roundlmath.hlong double roundl(long double x);B.11 Mathematics -
nosym p lroundmath.hlong int lround(double x);B.11 Mathematics -
nosym p lroundfmath.hlong int lroundf(float x);B.11 Mathematics -
nosym p lroundlmath.hlong int lroundl(long double x);B.11 Mathematics -
nosym p llroundmath.hlong long int llround(double x);B.11 Mathematics -
nosym p llroundfmath.hlong long int llroundf(float x);B.11 Mathematics -
nosym p llroundlmath.hlong long int llroundl(long double x);B.11 Mathematics -
 Tp truncmath.hdouble trunc(double x);B.11 Mathematics -
 Tp truncfmath.hfloat truncf(float x);B.11 Mathematics -
nosym p trunclmath.hlong double truncl(long double x);B.11 Mathematics -
 Tp fmodmath.hdouble fmod(double x, double y);B.11 Mathematics -
 Tp fmodfmath.hfloat fmodf(float x, float y);B.11 Mathematics -
nosym p fmodlmath.hlong double fmodl(long double x, long double y);B.11 Mathematics -
 Tp remaindermath.hdouble remainder(double x, double y);B.11 Mathematics -
 Tp remainderfmath.hfloat remainderf(float x, float y);B.11 Mathematics -
nosym p remainderlmath.hlong double remainderl(long double x, long double y);B.11 Mathematics -
 Tp remquomath.hdouble remquo(double x, double y, int *quo);B.11 Mathematics -
 Tp remquofmath.hfloat remquof(float x, float y, int *quo);B.11 Mathematics -
nosym p remquolmath.hlong double remquol(long double x, long double y, int *quo);B.11 Mathematics -
 Tp copysignmath.hdouble copysign(double x, double y);B.11 Mathematics -
 Tp copysignfmath.hfloat copysignf(float x, float y);B.11 Mathematics -
nosym p copysignlmath.hlong double copysignl(long double x, long double y);B.11 Mathematics -
nosym p nanmath.hdouble nan(const char *tagp);B.11 Mathematics -
nosym p nanfmath.hfloat nanf(const char *tagp);B.11 Mathematics -
nosym p nanlmath.hlong double nanl(const char *tagp);B.11 Mathematics -
 Tp nextaftermath.hdouble nextafter(double x, double y);B.11 Mathematics -
 Tp nextafterfmath.hfloat nextafterf(float x, float y);B.11 Mathematics -
nosym p nextafterlmath.hlong double nextafterl(long double x, long double y);B.11 Mathematics -
nosym p nexttowardmath.hdouble nexttoward(double x, long double y);B.11 Mathematics -
nosym p nexttowardfmath.hfloat nexttowardf(float x, long double y);B.11 Mathematics -
nosym p nexttowardlmath.hlong double nexttowardl(long double x, long double y);B.11 Mathematics -
nosym p fdimmath.hdouble fdim(double x, double y);B.11 Mathematics -
nosym p fdimfmath.hfloat fdimf(float x, float y);B.11 Mathematics -
nosym p fdimlmath.hlong double fdiml(long double x, long double y);B.11 Mathematics -
nosym p fmaxmath.hdouble fmax(double x, double y);B.11 Mathematics -
nosym p fmaxfmath.hfloat fmaxf(float x, float y);B.11 Mathematics -
nosym p fmaxlmath.hlong double fmaxl(long double x, long double y);B.11 Mathematics -
nosym p fminmath.hdouble fmin(double x, double y);B.11 Mathematics -
nosym p fminfmath.hfloat fminf(float x, float y);B.11 Mathematics -
nosym p fminlmath.hlong double fminl(long double x, long double y);B.11 Mathematics -
nosym p fmamath.hdouble fma(double x, double y, double z);B.11 Mathematics -
nosym p fmafmath.hfloat fmaf(float x, float y, float z);B.11 Mathematics -
nosym p fmalmath.hlong double fmal(long double x, long double y, long double z);B.11 Mathematics -
  d isgreatermath.hint isgreater(real-floating x, real-floating y);B.11 Mathematics -
  d isgreaterequalmath.hint isgreaterequal(real-floating x, real-floating y);B.11 Mathematics -
  d islessmath.hint isless(real-floating x, real-floating y);B.11 Mathematics -
  d islessequalmath.hint islessequal(real-floating x, real-floating y);B.11 Mathematics -
  d islessgreatermath.hint islessgreater(real-floating x, real-floating y);B.11 Mathematics -
  d isunorderedmath.hint isunordered(real-floating x, real-floating y);B.11 Mathematics +
  d fpclassifymath.hint fpclassify(real-floating x);B.11 Mathematics +
  d isfinitemath.hint isfinite(real-floating x);B.11 Mathematics +
  d isinfmath.hint isinf(real-floating x);B.11 Mathematics +
  d isnanmath.hint isnan(real-floating x);B.11 Mathematics +
  d isnormalmath.hint isnormal(real-floating x);B.11 Mathematics +
  d signbitmath.hint signbit(real-floating x);B.11 Mathematics +
 Tp d acosmath.hdouble acos(double x);B.11 Mathematics +
 Tp acosfmath.hfloat acosf(float x);B.11 Mathematics +
 Tp acoslmath.hlong double acosl(long double x);B.11 Mathematics +
 Tp d asinmath.hdouble asin(double x);B.11 Mathematics +
 Tp asinfmath.hfloat asinf(float x);B.11 Mathematics +
 Tp asinlmath.hlong double asinl(long double x);B.11 Mathematics +
 Tp d atanmath.hdouble atan(double x);B.11 Mathematics +
 Tp atanfmath.hfloat atanf(float x);B.11 Mathematics +
 Tp atanlmath.hlong double atanl(long double x);B.11 Mathematics +
 Tp d atan2math.hdouble atan2(double y, double x);B.11 Mathematics +
 Tp atan2fmath.hfloat atan2f(float y, float x);B.11 Mathematics +
 Tp atan2lmath.hlong double atan2l(long double y, long double x);B.11 Mathematics +
 Tp d cosmath.hdouble cos(double x);B.11 Mathematics +
 Tp cosfmath.hfloat cosf(float x);B.11 Mathematics +
 Tp coslmath.hlong double cosl(long double x);B.11 Mathematics +
 Tp d sinmath.hdouble sin(double x);B.11 Mathematics +
 Tp sinfmath.hfloat sinf(float x);B.11 Mathematics +
 Tp sinlmath.hlong double sinl(long double x);B.11 Mathematics +
 Tp d tanmath.hdouble tan(double x);B.11 Mathematics +
 Tp tanfmath.hfloat tanf(float x);B.11 Mathematics +
 Tp tanlmath.hlong double tanl(long double x);B.11 Mathematics +
 Tp d acoshmath.hdouble acosh(double x);B.11 Mathematics +
 Tp acoshfmath.hfloat acoshf(float x);B.11 Mathematics +
 Tp acoshlmath.hlong double acoshl(long double x);B.11 Mathematics +
 Tp d asinhmath.hdouble asinh(double x);B.11 Mathematics +
 Tp asinhfmath.hfloat asinhf(float x);B.11 Mathematics +
 Tp asinhlmath.hlong double asinhl(long double x);B.11 Mathematics +
 Tp d atanhmath.hdouble atanh(double x);B.11 Mathematics +
 Tp atanhfmath.hfloat atanhf(float x);B.11 Mathematics +
 Tp atanhlmath.hlong double atanhl(long double x);B.11 Mathematics +
 Tp d coshmath.hdouble cosh(double x);B.11 Mathematics +
 Tp coshfmath.hfloat coshf(float x);B.11 Mathematics +
 Tp coshlmath.hlong double coshl(long double x);B.11 Mathematics +
 Tp d sinhmath.hdouble sinh(double x);B.11 Mathematics +
 Tp sinhfmath.hfloat sinhf(float x);B.11 Mathematics +
 Tp sinhlmath.hlong double sinhl(long double x);B.11 Mathematics +
 Tp d tanhmath.hdouble tanh(double x);B.11 Mathematics +
 Tp tanhfmath.hfloat tanhf(float x);B.11 Mathematics +
 Tp tanhlmath.hlong double tanhl(long double x);B.11 Mathematics +
 Tp d expmath.hdouble exp(double x);B.11 Mathematics +
 Tp expfmath.hfloat expf(float x);B.11 Mathematics +
 Tp explmath.hlong double expl(long double x);B.11 Mathematics +
 Tp d exp2math.hdouble exp2(double x);B.11 Mathematics +
 Tp exp2fmath.hfloat exp2f(float x);B.11 Mathematics +
 Tp exp2lmath.hlong double exp2l(long double x);B.11 Mathematics +
 Tp d expm1math.hdouble expm1(double x);B.11 Mathematics +
 Tp expm1fmath.hfloat expm1f(float x);B.11 Mathematics +
 Tp expm1lmath.hlong double expm1l(long double x);B.11 Mathematics +
 Tp d frexpmath.hdouble frexp(double value, int *exp);B.11 Mathematics +
 Tp frexpfmath.hfloat frexpf(float value, int *exp);B.11 Mathematics +
 Tp frexplmath.hlong double frexpl(long double value, int *exp);B.11 Mathematics +
 Tp d ilogbmath.hint ilogb(double x);B.11 Mathematics +
 Tp ilogbfmath.hint ilogbf(float x);B.11 Mathematics +
 Tp ilogblmath.hint ilogbl(long double x);B.11 Mathematics +
 Tp d ldexpmath.hdouble ldexp(double x, int exp);B.11 Mathematics +
 Tp ldexpfmath.hfloat ldexpf(float x, int exp);B.11 Mathematics +
 Tp ldexplmath.hlong double ldexpl(long double x, int exp);B.11 Mathematics +
 Tp d logmath.hdouble log(double x);B.11 Mathematics +
 Tp logfmath.hfloat logf(float x);B.11 Mathematics +
 Tp loglmath.hlong double logl(long double x);B.11 Mathematics +
 Tp d log10math.hdouble log10(double x);B.11 Mathematics +
 Tp log10fmath.hfloat log10f(float x);B.11 Mathematics +
 Tp log10lmath.hlong double log10l(long double x);B.11 Mathematics +
 Tp d log1pmath.hdouble log1p(double x);B.11 Mathematics +
 Tp log1pfmath.hfloat log1pf(float x);B.11 Mathematics +
 Tp log1plmath.hlong double log1pl(long double x);B.11 Mathematics +
 Tp d log2math.hdouble log2(double x);B.11 Mathematics +
 Tp log2fmath.hfloat log2f(float x);B.11 Mathematics +
 Tp log2lmath.hlong double log2l(long double x);B.11 Mathematics +
 Tp d logbmath.hdouble logb(double x);B.11 Mathematics +
 Tp logbfmath.hfloat logbf(float x);B.11 Mathematics +
 Tp logblmath.hlong double logbl(long double x);B.11 Mathematics +
 Tp modfmath.hdouble modf(double value, double *iptr);B.11 Mathematics +
 Tp modffmath.hfloat modff(float value, float *iptr);B.11 Mathematics +
 Tp modflmath.hlong double modfl(long double value, long double *iptr);B.11 Mathematics +
 Tp d scalbnmath.hdouble scalbn(double x, int n);B.11 Mathematics +
 Tp scalbnfmath.hfloat scalbnf(float x, int n);B.11 Mathematics +
 Tp scalbnlmath.hlong double scalbnl(long double x, int n);B.11 Mathematics +
 Tp d scalblnmath.hdouble scalbln(double x, long int n);B.11 Mathematics +
 Tp scalblnfmath.hfloat scalblnf(float x, long int n);B.11 Mathematics +
 Tp scalblnlmath.hlong double scalblnl(long double x, long int n);B.11 Mathematics +
 Tp d cbrtmath.hdouble cbrt(double x);B.11 Mathematics +
 Tp cbrtfmath.hfloat cbrtf(float x);B.11 Mathematics +
 Tp cbrtlmath.hlong double cbrtl(long double x);B.11 Mathematics +
 Tp d fabsmath.hdouble fabs(double x);B.11 Mathematics +
 Tp fabsfmath.hfloat fabsf(float x);B.11 Mathematics +
 Tp fabslmath.hlong double fabsl(long double x);B.11 Mathematics +
 Tp d hypotmath.hdouble hypot(double x, double y);B.11 Mathematics +
 Tp hypotfmath.hfloat hypotf(float x, float y);B.11 Mathematics +
 Tp hypotlmath.hlong double hypotl(long double x, long double y);B.11 Mathematics +
 Tp d powmath.hdouble pow(double x, double y);B.11 Mathematics +
 Tp powfmath.hfloat powf(float x, float y);B.11 Mathematics +
 Tp powlmath.hlong double powl(long double x, long double y);B.11 Mathematics +
 Tp d sqrtmath.hdouble sqrt(double x);B.11 Mathematics +
 Tp sqrtfmath.hfloat sqrtf(float x);B.11 Mathematics +
 Tp sqrtlmath.hlong double sqrtl(long double x);B.11 Mathematics +
 Tp d erfmath.hdouble erf(double x);B.11 Mathematics +
 Tp erffmath.hfloat erff(float x);B.11 Mathematics +
 Tp erflmath.hlong double erfl(long double x);B.11 Mathematics +
 Tp d erfcmath.hdouble erfc(double x);B.11 Mathematics +
 Tp erfcfmath.hfloat erfcf(float x);B.11 Mathematics +
 Tp erfclmath.hlong double erfcl(long double x);B.11 Mathematics +
 Tp d lgammamath.hdouble lgamma(double x);B.11 Mathematics +
 Tp lgammafmath.hfloat lgammaf(float x);B.11 Mathematics +
 Tp lgammalmath.hlong double lgammal(long double x);B.11 Mathematics +
  p d tgammamath.hdouble tgamma(double x);B.11 Mathematics +
nosym p tgammafmath.hfloat tgammaf(float x);B.11 Mathematics +
 Tp tgammalmath.hlong double tgammal(long double x);B.11 Mathematics +
 Tp d ceilmath.hdouble ceil(double x);B.11 Mathematics +
 Tp ceilfmath.hfloat ceilf(float x);B.11 Mathematics +
 Tp ceillmath.hlong double ceill(long double x);B.11 Mathematics +
 Tp d floormath.hdouble floor(double x);B.11 Mathematics +
 Tp floorfmath.hfloat floorf(float x);B.11 Mathematics +
 Tp floorlmath.hlong double floorl(long double x);B.11 Mathematics +
 Tp d nearbyintmath.hdouble nearbyint(double x);B.11 Mathematics +
 Tp nearbyintfmath.hfloat nearbyintf(float x);B.11 Mathematics +
 Tp nearbyintlmath.hlong double nearbyintl(long double x);B.11 Mathematics +
 Tp d rintmath.hdouble rint(double x);B.11 Mathematics +
 Tp rintfmath.hfloat rintf(float x);B.11 Mathematics +
 Tp rintlmath.hlong double rintl(long double x);B.11 Mathematics +
 Tp d lrintmath.hlong int lrint(double x);B.11 Mathematics +
 Tp lrintfmath.hlong int lrintf(float x);B.11 Mathematics +
 Tp lrintlmath.hlong int lrintl(long double x);B.11 Mathematics +
 Tp d llrintmath.hlong long int llrint(double x);B.11 Mathematics +
 Tp llrintfmath.hlong long int llrintf(float x);B.11 Mathematics +
 Tp llrintlmath.hlong long int llrintl(long double x);B.11 Mathematics +
 Tp d roundmath.hdouble round(double x);B.11 Mathematics +
 Tp roundfmath.hfloat roundf(float x);B.11 Mathematics +
 Tp roundlmath.hlong double roundl(long double x);B.11 Mathematics +
 Tp d lroundmath.hlong int lround(double x);B.11 Mathematics +
 Tp lroundfmath.hlong int lroundf(float x);B.11 Mathematics +
 Tp lroundlmath.hlong int lroundl(long double x);B.11 Mathematics +
 Tp d llroundmath.hlong long int llround(double x);B.11 Mathematics +
 Tp llroundfmath.hlong long int llroundf(float x);B.11 Mathematics +
 Tp llroundlmath.hlong long int llroundl(long double x);B.11 Mathematics +
 Tp d truncmath.hdouble trunc(double x);B.11 Mathematics +
 Tp truncfmath.hfloat truncf(float x);B.11 Mathematics +
 Tp trunclmath.hlong double truncl(long double x);B.11 Mathematics +
 Tp d fmodmath.hdouble fmod(double x, double y);B.11 Mathematics +
 Tp fmodfmath.hfloat fmodf(float x, float y);B.11 Mathematics +
 Tp fmodlmath.hlong double fmodl(long double x, long double y);B.11 Mathematics +
 Tp d remaindermath.hdouble remainder(double x, double y);B.11 Mathematics +
 Tp remainderfmath.hfloat remainderf(float x, float y);B.11 Mathematics +
 Tp remainderlmath.hlong double remainderl(long double x, long double y);B.11 Mathematics +
 Tp d remquomath.hdouble remquo(double x, double y, int *quo);B.11 Mathematics +
 Tp remquofmath.hfloat remquof(float x, float y, int *quo);B.11 Mathematics +
 Tp remquolmath.hlong double remquol(long double x, long double y, int *quo);B.11 Mathematics +
 Tp d copysignmath.hdouble copysign(double x, double y);B.11 Mathematics +
 Tp copysignfmath.hfloat copysignf(float x, float y);B.11 Mathematics +
 Tp copysignlmath.hlong double copysignl(long double x, long double y);B.11 Mathematics +
nosym p nanmath.hdouble nan(const char *tagp);B.11 Mathematics +
nosym p nanfmath.hfloat nanf(const char *tagp);B.11 Mathematics +
nosym p nanlmath.hlong double nanl(const char *tagp);B.11 Mathematics +
 Tp d nextaftermath.hdouble nextafter(double x, double y);B.11 Mathematics +
 Tp nextafterfmath.hfloat nextafterf(float x, float y);B.11 Mathematics +
 Tp nextafterlmath.hlong double nextafterl(long double x, long double y);B.11 Mathematics +
 Tp d nexttowardmath.hdouble nexttoward(double x, long double y);B.11 Mathematics +
 Tp nexttowardfmath.hfloat nexttowardf(float x, long double y);B.11 Mathematics +
 Tp nexttowardlmath.hlong double nexttowardl(long double x, long double y);B.11 Mathematics +
 Tp d fdimmath.hdouble fdim(double x, double y);B.11 Mathematics +
 Tp fdimfmath.hfloat fdimf(float x, float y);B.11 Mathematics +
 Tp fdimlmath.hlong double fdiml(long double x, long double y);B.11 Mathematics +
 Tp d fmaxmath.hdouble fmax(double x, double y);B.11 Mathematics +
 Tp fmaxfmath.hfloat fmaxf(float x, float y);B.11 Mathematics +
 Tp fmaxlmath.hlong double fmaxl(long double x, long double y);B.11 Mathematics +
 Tp d fminmath.hdouble fmin(double x, double y);B.11 Mathematics +
 Tp fminfmath.hfloat fminf(float x, float y);B.11 Mathematics +
 Tp fminlmath.hlong double fminl(long double x, long double y);B.11 Mathematics +
 Tp d fmamath.hdouble fma(double x, double y, double z);B.11 Mathematics +
 Tp fmafmath.hfloat fmaf(float x, float y, float z);B.11 Mathematics +
 Tp fmalmath.hlong double fmal(long double x, long double y, long double z);B.11 Mathematics +
  d isgreatermath.hint isgreater(real-floating x, real-floating y);B.11 Mathematics +
  d isgreaterequalmath.hint isgreaterequal(real-floating x, real-floating y);B.11 Mathematics +
  d islessmath.hint isless(real-floating x, real-floating y);B.11 Mathematics +
  d islessequalmath.hint islessequal(real-floating x, real-floating y);B.11 Mathematics +
  d islessgreatermath.hint islessgreater(real-floating x, real-floating y);B.11 Mathematics +
  d isunorderedmath.hint isunordered(real-floating x, real-floating y);B.11 Mathematics
  t d jmp_bufsetjmp.h B.12 Nonlocal jumps
 Td p setjmpsetjmp.hint setjmp(jmp_buf env);B.12 Nonlocal jumps
 Td p longjmpsetjmp.hvoid longjmp(jmp_buf env, int val);B.12 Nonlocal jumps @@ -805,66 +805,66 @@
 Tp memsetstring.hvoid *memset(void *s, int c, size_t n);B.20 String handling
 Tp strerrorstring.hchar *strerror(int errnum);B.20 String handling
 Tp strlenstring.hsize_t strlen(const char *s);B.20 String handling -
 Tp acostgmath.h B.21 Type-generic math -
 Tp sqrttgmath.h B.21 Type-generic math -
 Tp fmodtgmath.h B.21 Type-generic math -
 Tp nextaftertgmath.h B.21 Type-generic math -
 Tp asintgmath.h B.21 Type-generic math -
 Tp fabstgmath.h B.21 Type-generic math -
 Tp frexptgmath.h B.21 Type-generic math -
nosym p nexttowardtgmath.h B.21 Type-generic math -
 Tp atantgmath.h B.21 Type-generic math -
 Tp atan2tgmath.h B.21 Type-generic math -
 Tp hypottgmath.h B.21 Type-generic math -
 Tp remaindertgmath.h B.21 Type-generic math -
 Tp acoshtgmath.h B.21 Type-generic math -
 Tp cbrttgmath.h B.21 Type-generic math -
 Tp ilogbtgmath.h B.21 Type-generic math -
 Tp remquotgmath.h B.21 Type-generic math -
 Tp asinhtgmath.h B.21 Type-generic math -
 Tp ceiltgmath.h B.21 Type-generic math -
 Tp ldexptgmath.h B.21 Type-generic math -
 Tp rinttgmath.h B.21 Type-generic math -
 Tp atanhtgmath.h B.21 Type-generic math -
 Tp copysigntgmath.h B.21 Type-generic math -
nosym p lgammatgmath.h B.21 Type-generic math -
 Tp roundtgmath.h B.21 Type-generic math -
 Tp costgmath.h B.21 Type-generic math -
 Tp erftgmath.h B.21 Type-generic math -
 Tp llrinttgmath.h B.21 Type-generic math -
 Tp scalbntgmath.h B.21 Type-generic math -
 Tp sintgmath.h B.21 Type-generic math -
 Tp erfctgmath.h B.21 Type-generic math -
nosym p llroundtgmath.h B.21 Type-generic math -
 Tp scalblntgmath.h B.21 Type-generic math -
 Tp tantgmath.h B.21 Type-generic math -
nosym p exp2tgmath.h B.21 Type-generic math -
 Tp log10tgmath.h B.21 Type-generic math -
nosym p tgammatgmath.h B.21 Type-generic math -
 Tp coshtgmath.h B.21 Type-generic math -
 Tp expm1tgmath.h B.21 Type-generic math -
 Tp log1ptgmath.h B.21 Type-generic math -
 Tp trunctgmath.h B.21 Type-generic math -
 Tp sinhtgmath.h B.21 Type-generic math -
nosym p fdimtgmath.h B.21 Type-generic math -
nosym p log2tgmath.h B.21 Type-generic math -
missing  cargtgmath.h B.21 Type-generic math -
 Tp tanhtgmath.h B.21 Type-generic math -
 Tp floortgmath.h B.21 Type-generic math -
 Tp logbtgmath.h B.21 Type-generic math -
missing  cimagtgmath.h B.21 Type-generic math -
 Tp exptgmath.h B.21 Type-generic math -
nosym p fmatgmath.h B.21 Type-generic math -
 Tp lrinttgmath.h B.21 Type-generic math -
missing  conjtgmath.h B.21 Type-generic math -
 Tp logtgmath.h B.21 Type-generic math -
nosym p fmaxtgmath.h B.21 Type-generic math -
nosym p lroundtgmath.h B.21 Type-generic math -
missing  cprojtgmath.h B.21 Type-generic math -
 Tp powtgmath.h B.21 Type-generic math -
nosym p fmintgmath.h B.21 Type-generic math -
nosym p nearbyinttgmath.h B.21 Type-generic math -
missing  crealtgmath.h B.21 Type-generic math +
 Tp d acostgmath.h B.21 Type-generic math +
 Tp d sqrttgmath.h B.21 Type-generic math +
 Tp d fmodtgmath.h B.21 Type-generic math +
 Tp d nextaftertgmath.h B.21 Type-generic math +
 Tp d asintgmath.h B.21 Type-generic math +
 Tp d fabstgmath.h B.21 Type-generic math +
 Tp d frexptgmath.h B.21 Type-generic math +
 Tp d nexttowardtgmath.h B.21 Type-generic math +
 Tp d atantgmath.h B.21 Type-generic math +
 Tp d atan2tgmath.h B.21 Type-generic math +
 Tp d hypottgmath.h B.21 Type-generic math +
 Tp d remaindertgmath.h B.21 Type-generic math +
 Tp d acoshtgmath.h B.21 Type-generic math +
 Tp d cbrttgmath.h B.21 Type-generic math +
 Tp d ilogbtgmath.h B.21 Type-generic math +
 Tp d remquotgmath.h B.21 Type-generic math +
 Tp d asinhtgmath.h B.21 Type-generic math +
 Tp d ceiltgmath.h B.21 Type-generic math +
 Tp d ldexptgmath.h B.21 Type-generic math +
 Tp d rinttgmath.h B.21 Type-generic math +
 Tp d atanhtgmath.h B.21 Type-generic math +
 Tp d copysigntgmath.h B.21 Type-generic math +
 Tp d lgammatgmath.h B.21 Type-generic math +
 Tp d roundtgmath.h B.21 Type-generic math +
 Tp d costgmath.h B.21 Type-generic math +
 Tp d erftgmath.h B.21 Type-generic math +
 Tp d llrinttgmath.h B.21 Type-generic math +
 Tp d scalbntgmath.h B.21 Type-generic math +
 Tp d sintgmath.h B.21 Type-generic math +
 Tp d erfctgmath.h B.21 Type-generic math +
 Tp d llroundtgmath.h B.21 Type-generic math +
 Tp d scalblntgmath.h B.21 Type-generic math +
 Tp d tantgmath.h B.21 Type-generic math +
 Tp d exp2tgmath.h B.21 Type-generic math +
 Tp d log10tgmath.h B.21 Type-generic math +
  p d tgammatgmath.h B.21 Type-generic math +
 Tp d coshtgmath.h B.21 Type-generic math +
 Tp d expm1tgmath.h B.21 Type-generic math +
 Tp d log1ptgmath.h B.21 Type-generic math +
 Tp d trunctgmath.h B.21 Type-generic math +
 Tp d sinhtgmath.h B.21 Type-generic math +
 Tp d fdimtgmath.h B.21 Type-generic math +
 Tp d log2tgmath.h B.21 Type-generic math +
 Tp d cargtgmath.h B.21 Type-generic math +
 Tp d tanhtgmath.h B.21 Type-generic math +
 Tp d floortgmath.h B.21 Type-generic math +
 Tp d logbtgmath.h B.21 Type-generic math +
 Tp d cimagtgmath.h B.21 Type-generic math +
 Tp d exptgmath.h B.21 Type-generic math +
 Tp d fmatgmath.h B.21 Type-generic math +
 Tp d lrinttgmath.h B.21 Type-generic math +
 Tp d conjtgmath.h B.21 Type-generic math +
 Tp d logtgmath.h B.21 Type-generic math +
 Tp d fmaxtgmath.h B.21 Type-generic math +
 Tp d lroundtgmath.h B.21 Type-generic math +
 Tp d cprojtgmath.h B.21 Type-generic math +
 Tp d powtgmath.h B.21 Type-generic math +
 Tp d fmintgmath.h B.21 Type-generic math +
 Tp d nearbyinttgmath.h B.21 Type-generic math +
 Tp d crealtgmath.h B.21 Type-generic math
  d d d d d d d d d d d d d d d d d d d d d d d d NULLtime.h B.22 Date and time
  t size_ttime.h B.22 Date and time
  t time_ttime.h B.22 Date and time @@ -971,4 +971,4 @@
 Tp towctranswctype.hwint_t towctrans(wint_t wc, wctrans_t desc);B.24 Wide character classification and mapping utilities
 Tp wctranswctype.hwctrans_t wctrans(const char *property);B.24 Wide character classification and mapping utilities
-

stats

+

stats

diff --git a/tab_posix.html b/tab_posix.html index 9b0e874..5b81ee0 100644 --- a/tab_posix.html +++ b/tab_posix.html @@ -1,5 +1,5 @@

musl vs posix api

-

commit

commit 405ce58dcf59ecfb3e245fed0b96b1f35fbeaec1
Date: Fri Mar 2 22:35:37 2012 -0500

fix nan/infinity macros in math.h, etc.

the previous version not only failed to work in c++, but also failed
to produce constant expressions, making the macros useless as
initializers for objects of static storage duration.

gcc 3.3 and later have builtins for these, which sadly seem to be the
most "portable" solution. the alternative definitions produce
exceptions (for NAN) and compiler warnings (for INFINITY) on newer
versions of gcc. +

commit

commit b69f695acedd4ce2798ef9ea28d834ceccc789bd
Date: Tue Mar 13 01:17:53 2012 -0400

first commit of the new libm!

thanks to the hard work of Szabolcs Nagy (nsz), identifying the best
(from correctness and license standpoint) implementations from freebsd
and openbsd and cleaning them up! musl should now fully support c99
float and long double math functions, and has near-complete complex
math support. tgmath should also work (fully on gcc-compatible
compilers, and mostly on any c99 compiler).

based largely on commit 0376d44a890fea261506f1fc63833e7a686dca19 from
nsz's libm git repo, with some additions (dummy versions of a few
missing long double complex functions, etc.) by me.

various cleanups still need to be made, including re-adding (if
they're correct) some asm functions that were dropped.

legend

(STREAMS and posix_trace* apis are excluded)

table

muslposix
statussymdeclnameheaderoptiondesc
  d FD_CLR sys/select.h pselect, select - synchronous I/O multiplexing @@ -17,12 +17,12 @@
 Tp abs stdlib.h abs - return an integer absolute value
 Tp accept sys/socket.h accept - accept a new connection on a socket
 Tp access unistd.h access, faccessat - determine accessibility of a file relative to directory file descriptor -
 Tp acos math.h acos, acosf, acosl - arc cosine functions -
 Tp acosf math.h acos, acosf, acosl - arc cosine functions -
 Tp acosh math.h acosh, acoshf, acoshl - inverse hyperbolic cosine functions -
 Tp acoshf math.h acosh, acoshf, acoshl - inverse hyperbolic cosine functions -
nosym p acoshl math.h acosh, acoshf, acoshl - inverse hyperbolic cosine functions -
nosym p acosl math.h acos, acosf, acosl - arc cosine functions +
 Tp d acos math.h acos, acosf, acosl - arc cosine functions +
 Tp acosf math.h acos, acosf, acosl - arc cosine functions +
 Tp d acosh math.h acosh, acoshf, acoshl - inverse hyperbolic cosine functions +
 Tp acoshf math.h acosh, acoshf, acoshl - inverse hyperbolic cosine functions +
 Tp acoshl math.h acosh, acoshf, acoshl - inverse hyperbolic cosine functions +
 Tp acosl math.h acos, acosf, acosl - arc cosine functions
 Tp aio_cancel aio.h aio_cancel - cancel an asynchronous I/O request
 Tp aio_error aio.h aio_error - retrieve errors status for an asynchronous I/O operation
 Tp aio_fsync aio.h aio_fsync - asynchronous file synchronization @@ -34,22 +34,22 @@
 Tp alphasort dirent.h alphasort, scandir - scan a directory
 Tp asctime time.h OBasctime, asctime_r - convert date and time to a string
 Tp asctime_r time.h OB CXasctime, asctime_r - convert date and time to a string -
 Tp asin math.h asin, asinf, asinl - arc sine function -
 Tp asinf math.h asin, asinf, asinl - arc sine function -
 Tp asinh math.h asinh, asinhf, asinhl - inverse hyperbolic sine functions -
 Tp asinhf math.h asinh, asinhf, asinhl - inverse hyperbolic sine functions -
nosym p asinhl math.h asinh, asinhf, asinhl - inverse hyperbolic sine functions -
nosym p asinl math.h asin, asinf, asinl - arc sine function +
 Tp d asin math.h asin, asinf, asinl - arc sine function +
 Tp asinf math.h asin, asinf, asinl - arc sine function +
 Tp d asinh math.h asinh, asinhf, asinhl - inverse hyperbolic sine functions +
 Tp asinhf math.h asinh, asinhf, asinhl - inverse hyperbolic sine functions +
 Tp asinhl math.h asinh, asinhf, asinhl - inverse hyperbolic sine functions +
 Tp asinl math.h asin, asinf, asinl - arc sine function
  d d d assert assert.h assert - insert program diagnostics -
 Tp atan math.h atan, atanf, atanl - arc tangent function -
 Tp atan2 math.h atan2, atan2f, atan2l - arc tangent functions -
 Tp atan2f math.h atan2, atan2f, atan2l - arc tangent functions -
nosym p atan2l math.h atan2, atan2f, atan2l - arc tangent functions -
 Tp atanf math.h atan, atanf, atanl - arc tangent function -
 Tp atanh math.h atanh, atanhf, atanhl - inverse hyperbolic tangent functions -
 Tp atanhf math.h atanh, atanhf, atanhl - inverse hyperbolic tangent functions -
nosym p atanhl math.h atanh, atanhf, atanhl - inverse hyperbolic tangent functions -
nosym p atanl math.h atan, atanf, atanl - arc tangent function +
 Tp d atan math.h atan, atanf, atanl - arc tangent function +
 Tp d atan2 math.h atan2, atan2f, atan2l - arc tangent functions +
 Tp atan2f math.h atan2, atan2f, atan2l - arc tangent functions +
 Tp atan2l math.h atan2, atan2f, atan2l - arc tangent functions +
 Tp atanf math.h atan, atanf, atanl - arc tangent function +
 Tp d atanh math.h atanh, atanhf, atanhl - inverse hyperbolic tangent functions +
 Tp atanhf math.h atanh, atanhf, atanhl - inverse hyperbolic tangent functions +
 Tp atanhl math.h atanh, atanhf, atanhl - inverse hyperbolic tangent functions +
 Tp atanl math.h atan, atanf, atanl - arc tangent function
 Tp atexit stdlib.h atexit - register a function to run at process termination
 Tp atof stdlib.h atof - convert a string to a double-precision number
 Tp atoi stdlib.h atoi - convert a string to an integer @@ -59,49 +59,49 @@
 Tp bind sys/socket.h bind - bind a name to a socket
 Tp bsearch stdlib.h bsearch - binary search a sorted table
 Tp btowc stdio.h wchar.h btowc - single byte to wide character conversion -
missing  cabs complex.h cabs, cabsf, cabsl - return a complex absolute value -
missing  cabsf complex.h cabs, cabsf, cabsl - return a complex absolute value -
missing  cabsl complex.h cabs, cabsf, cabsl - return a complex absolute value -
missing  cacos complex.h cacos, cacosf, cacosl - complex arc cosine functions -
missing  cacosf complex.h cacos, cacosf, cacosl - complex arc cosine functions -
missing  cacosh complex.h cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions -
missing  cacoshf complex.h cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions -
missing  cacoshl complex.h cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions -
missing  cacosl complex.h cacos, cacosf, cacosl - complex arc cosine functions +
 Tp cabs complex.h cabs, cabsf, cabsl - return a complex absolute value +
 Tp cabsf complex.h cabs, cabsf, cabsl - return a complex absolute value +
 Tp cabsl complex.h cabs, cabsf, cabsl - return a complex absolute value +
 Tp cacos complex.h cacos, cacosf, cacosl - complex arc cosine functions +
 Tp cacosf complex.h cacos, cacosf, cacosl - complex arc cosine functions +
 Tp cacosh complex.h cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions +
 Tp cacoshf complex.h cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions +
 Tp cacoshl complex.h cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions +
 Tp cacosl complex.h cacos, cacosf, cacosl - complex arc cosine functions
 Tp calloc stdlib.h calloc - a memory allocator -
missing  carg complex.h carg, cargf, cargl - complex argument functions -
missing  cargf complex.h carg, cargf, cargl - complex argument functions -
missing  cargl complex.h carg, cargf, cargl - complex argument functions -
missing  casin complex.h casin, casinf, casinl - complex arc sine functions -
missing  casinf complex.h casin, casinf, casinl - complex arc sine functions -
missing  casinh complex.h casinh, casinhf, casinhl - complex arc hyperbolic sine functions -
missing  casinhf complex.h casinh, casinhf, casinhl - complex arc hyperbolic sine functions -
missing  casinhl complex.h casinh, casinhf, casinhl - complex arc hyperbolic sine functions -
missing  casinl complex.h casin, casinf, casinl - complex arc sine functions -
missing  catan complex.h catan, catanf, catanl - complex arc tangent functions -
missing  catanf complex.h catan, catanf, catanl - complex arc tangent functions -
missing  catanh complex.h catanh, catanhf, catanhl - complex arc hyperbolic tangent functions -
missing  catanhf complex.h catanh, catanhf, catanhl - complex arc hyperbolic tangent functions -
missing  catanhl complex.h catanh, catanhf, catanhl - complex arc hyperbolic tangent functions -
missing  catanl complex.h catan, catanf, catanl - complex arc tangent functions +
 Tp d carg complex.h carg, cargf, cargl - complex argument functions +
 Tp cargf complex.h carg, cargf, cargl - complex argument functions +
 Tp cargl complex.h carg, cargf, cargl - complex argument functions +
 Tp casin complex.h casin, casinf, casinl - complex arc sine functions +
 Tp casinf complex.h casin, casinf, casinl - complex arc sine functions +
 Tp casinh complex.h casinh, casinhf, casinhl - complex arc hyperbolic sine functions +
 Tp casinhf complex.h casinh, casinhf, casinhl - complex arc hyperbolic sine functions +
 Tp casinhl complex.h casinh, casinhf, casinhl - complex arc hyperbolic sine functions +
 Tp casinl complex.h casin, casinf, casinl - complex arc sine functions +
 Tp catan complex.h catan, catanf, catanl - complex arc tangent functions +
 Tp catanf complex.h catan, catanf, catanl - complex arc tangent functions +
 Tp catanh complex.h catanh, catanhf, catanhl - complex arc hyperbolic tangent functions +
 Tp catanhf complex.h catanh, catanhf, catanhl - complex arc hyperbolic tangent functions +
 Tp catanhl complex.h catanh, catanhf, catanhl - complex arc hyperbolic tangent functions +
 Tp catanl complex.h catan, catanf, catanl - complex arc tangent functions
 Tp catclose nl_types.h catclose - close a message catalog descriptor
 Tp catgets nl_types.h catgets - read a program message
 Tp catopen nl_types.h catopen - open a message catalog -
 Tp cbrt math.h cbrt, cbrtf, cbrtl - cube root functions -
 Tp cbrtf math.h cbrt, cbrtf, cbrtl - cube root functions -
nosym p cbrtl math.h cbrt, cbrtf, cbrtl - cube root functions -
missing  ccos complex.h ccos, ccosf, ccosl - complex cosine functions -
missing  ccosf complex.h ccos, ccosf, ccosl - complex cosine functions -
missing  ccosh complex.h ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions -
missing  ccoshf complex.h ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions -
missing  ccoshl complex.h ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions -
missing  ccosl complex.h ccos, ccosf, ccosl - complex cosine functions -
 Tp ceil math.h ceil, ceilf, ceill - ceiling value function -
 Tp ceilf math.h ceil, ceilf, ceill - ceiling value function -
nosym p ceill math.h ceil, ceilf, ceill - ceiling value function -
missing  cexp complex.h cexp, cexpf, cexpl - complex exponential functions -
missing  cexpf complex.h cexp, cexpf, cexpl - complex exponential functions -
missing  cexpl complex.h cexp, cexpf, cexpl - complex exponential functions +
 Tp d cbrt math.h cbrt, cbrtf, cbrtl - cube root functions +
 Tp cbrtf math.h cbrt, cbrtf, cbrtl - cube root functions +
 Tp cbrtl math.h cbrt, cbrtf, cbrtl - cube root functions +
 Tp ccos complex.h ccos, ccosf, ccosl - complex cosine functions +
 Tp ccosf complex.h ccos, ccosf, ccosl - complex cosine functions +
 Tp ccosh complex.h ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions +
 Tp ccoshf complex.h ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions +
 Tp ccoshl complex.h ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions +
 Tp ccosl complex.h ccos, ccosf, ccosl - complex cosine functions +
 Tp d ceil math.h ceil, ceilf, ceill - ceiling value function +
 Tp ceilf math.h ceil, ceilf, ceill - ceiling value function +
 Tp ceill math.h ceil, ceilf, ceill - ceiling value function +
 Tp cexp complex.h cexp, cexpf, cexpl - complex exponential functions +
 Tp cexpf complex.h cexp, cexpf, cexpl - complex exponential functions +
 Tp cexpl complex.h cexp, cexpf, cexpl - complex exponential functions
 Tp cfgetispeed termios.h cfgetispeed - get input baud rate
 Tp cfgetospeed termios.h cfgetospeed - get output baud rate
 Tp cfsetispeed termios.h cfsetispeed - set input baud rate @@ -109,9 +109,9 @@
 Tp chdir unistd.h chdir - change working directory
 Tp chmod sys/stat.h chmod, fchmodat - change mode of a file relative to directory file descriptor
 Tp chown unistd.h chown, fchownat - change owner and group of a file relative to directory file descriptor -
missing  cimag complex.h cimag, cimagf, cimagl - complex imaginary functions -
missing  cimagf complex.h cimag, cimagf, cimagl - complex imaginary functions -
missing  cimagl complex.h cimag, cimagf, cimagl - complex imaginary functions +
 Tp d cimag complex.h cimag, cimagf, cimagl - complex imaginary functions +
 Tp cimagf complex.h cimag, cimagf, cimagl - complex imaginary functions +
 Tp cimagl complex.h cimag, cimagf, cimagl - complex imaginary functions
 Tp clearerr stdio.h clearerr - clear indicators on a stream
 Tp clock time.h clock - report CPU time used
 Tp clock_getcpuclockid time.h CPTclock_getcpuclockid - access a process CPU-time clock (ADVANCED REALTIME) @@ -119,52 +119,52 @@
 Wp clock_gettime time.h CXclock_getres, clock_gettime, clock_settime - clock and timer functions
 Tp clock_nanosleep time.h CXclock_nanosleep - high resolution sleep with specifiable clock
 Tp clock_settime time.h CXclock_getres, clock_gettime, clock_settime - clock and timer functions -
missing  clog complex.h clog, clogf, clogl - complex natural logarithm functions -
missing  clogf complex.h clog, clogf, clogl - complex natural logarithm functions -
missing  clogl complex.h clog, clogf, clogl - complex natural logarithm functions +
 Tp clog complex.h clog, clogf, clogl - complex natural logarithm functions +
 Tp clogf complex.h clog, clogf, clogl - complex natural logarithm functions +
 Tp clogl complex.h clog, clogf, clogl - complex natural logarithm functions
 Tp close unistd.h close - close a file descriptor
 Tp closedir dirent.h closedir - close a directory stream
 Tp closelog syslog.h XSIcloselog, openlog, setlogmask, syslog - control system log
 Tp confstr unistd.h confstr - get configurable variables -
missing  conj complex.h conj, conjf, conjl - complex conjugate functions -
missing  conjf complex.h conj, conjf, conjl - complex conjugate functions -
missing  conjl complex.h conj, conjf, conjl - complex conjugate functions +
 Tp d conj complex.h conj, conjf, conjl - complex conjugate functions +
 Tp conjf complex.h conj, conjf, conjl - complex conjugate functions +
 Tp conjl complex.h conj, conjf, conjl - complex conjugate functions
 Tp connect sys/socket.h connect - connect a socket -
 Tp copysign math.h copysign, copysignf, copysignl - number manipulation function -
 Tp copysignf math.h copysign, copysignf, copysignl - number manipulation function -
nosym p copysignl math.h copysign, copysignf, copysignl - number manipulation function -
 Tp cos math.h cos, cosf, cosl - cosine function -
 Tp cosf math.h cos, cosf, cosl - cosine function -
 Tp cosh math.h cosh, coshf, coshl - hyperbolic cosine functions -
 Tp coshf math.h cosh, coshf, coshl - hyperbolic cosine functions -
nosym p coshl math.h cosh, coshf, coshl - hyperbolic cosine functions -
nosym p cosl math.h cos, cosf, cosl - cosine function -
missing  cpow complex.h cpow, cpowf, cpowl - complex power functions -
missing  cpowf complex.h cpow, cpowf, cpowl - complex power functions -
missing  cpowl complex.h cpow, cpowf, cpowl - complex power functions -
missing  cproj complex.h cproj, cprojf, cprojl - complex projection functions -
missing  cprojf complex.h cproj, cprojf, cprojl - complex projection functions -
missing  cprojl complex.h cproj, cprojf, cprojl - complex projection functions -
missing  creal complex.h creal, crealf, creall - complex real functions -
missing  crealf complex.h creal, crealf, creall - complex real functions -
missing  creall complex.h creal, crealf, creall - complex real functions +
 Tp d copysign math.h copysign, copysignf, copysignl - number manipulation function +
 Tp copysignf math.h copysign, copysignf, copysignl - number manipulation function +
 Tp copysignl math.h copysign, copysignf, copysignl - number manipulation function +
 Tp d cos math.h cos, cosf, cosl - cosine function +
 Tp cosf math.h cos, cosf, cosl - cosine function +
 Tp d cosh math.h cosh, coshf, coshl - hyperbolic cosine functions +
 Tp coshf math.h cosh, coshf, coshl - hyperbolic cosine functions +
 Tp coshl math.h cosh, coshf, coshl - hyperbolic cosine functions +
 Tp cosl math.h cos, cosf, cosl - cosine function +
 Tp cpow complex.h cpow, cpowf, cpowl - complex power functions +
 Tp cpowf complex.h cpow, cpowf, cpowl - complex power functions +
 Tp cpowl complex.h cpow, cpowf, cpowl - complex power functions +
 Tp d cproj complex.h cproj, cprojf, cprojl - complex projection functions +
 Tp cprojf complex.h cproj, cprojf, cprojl - complex projection functions +
 Tp cprojl complex.h cproj, cprojf, cprojl - complex projection functions +
 Tp d creal complex.h creal, crealf, creall - complex real functions +
 Tp crealf complex.h creal, crealf, creall - complex real functions +
 Tp creall complex.h creal, crealf, creall - complex real functions
 Tp creat sys/stat.h fcntl.h OHcreat - create a new file or rewrite an existing one
 Tp crypt unistd.h XSIcrypt - string encoding function (CRYPT) -
missing  csin complex.h csin, csinf, csinl - complex sine functions -
missing  csinf complex.h csin, csinf, csinl - complex sine functions -
missing  csinh complex.h csinh, csinhf, csinhl - complex hyperbolic sine functions -
missing  csinhf complex.h csinh, csinhf, csinhl - complex hyperbolic sine functions -
missing  csinhl complex.h csinh, csinhf, csinhl - complex hyperbolic sine functions -
missing  csinl complex.h csin, csinf, csinl - complex sine functions -
missing  csqrt complex.h csqrt, csqrtf, csqrtl - complex square root functions -
missing  csqrtf complex.h csqrt, csqrtf, csqrtl - complex square root functions -
missing  csqrtl complex.h csqrt, csqrtf, csqrtl - complex square root functions -
missing  ctan complex.h ctan, ctanf, ctanl - complex tangent functions -
missing  ctanf complex.h ctan, ctanf, ctanl - complex tangent functions -
missing  ctanh complex.h ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions -
missing  ctanhf complex.h ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions -
missing  ctanhl complex.h ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions -
missing  ctanl complex.h ctan, ctanf, ctanl - complex tangent functions +
 Tp csin complex.h csin, csinf, csinl - complex sine functions +
 Tp csinf complex.h csin, csinf, csinl - complex sine functions +
 Tp csinh complex.h csinh, csinhf, csinhl - complex hyperbolic sine functions +
 Tp csinhf complex.h csinh, csinhf, csinhl - complex hyperbolic sine functions +
 Tp csinhl complex.h csinh, csinhf, csinhl - complex hyperbolic sine functions +
 Tp csinl complex.h csin, csinf, csinl - complex sine functions +
 Tp csqrt complex.h csqrt, csqrtf, csqrtl - complex square root functions +
 Tp csqrtf complex.h csqrt, csqrtf, csqrtl - complex square root functions +
 Tp csqrtl complex.h csqrt, csqrtf, csqrtl - complex square root functions +
 Tp ctan complex.h ctan, ctanf, ctanl - complex tangent functions +
 Tp ctanf complex.h ctan, ctanf, ctanl - complex tangent functions +
 Tp ctanh complex.h ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions +
 Tp ctanhf complex.h ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions +
 Tp ctanhl complex.h ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions +
 Tp ctanl complex.h ctan, ctanf, ctanl - complex tangent functions
 Tp p ctermid stdio.h CXctermid - generate a pathname for the controlling terminal
 Tp ctime time.h OBctime, ctime_r - convert a time value to a date and time string
 Tp ctime_r time.h OB CXctime, ctime_r - convert a time value to a date and time string @@ -201,12 +201,12 @@
 Tp endutxent utmpx.h XSIendutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions
nodeclV environ unistd.h environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 Tp erand48 stdlib.h XSIdrand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers -
 Tp erf math.h erf, erff, erfl - error functions -
 Tp erfc math.h erfc, erfcf, erfcl - complementary error functions -
 Tp erfcf math.h erfc, erfcf, erfcl - complementary error functions -
nosym p erfcl math.h erfc, erfcf, erfcl - complementary error functions -
 Tp erff math.h erf, erff, erfl - error functions -
nosym p erfl math.h erf, erff, erfl - error functions +
 Tp d erf math.h erf, erff, erfl - error functions +
 Tp d erfc math.h erfc, erfcf, erfcl - complementary error functions +
 Tp erfcf math.h erfc, erfcf, erfcl - complementary error functions +
 Tp erfcl math.h erfc, erfcf, erfcl - complementary error functions +
 Tp erff math.h erf, erff, erfl - error functions +
 Tp erfl math.h erf, erff, erfl - error functions
  d errno errno.h errno - error return value
 Tp execl unistd.h environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 Tp execle unistd.h environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file @@ -215,18 +215,18 @@
 Tp execve unistd.h environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 Tp execvp unistd.h environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
 Tp exit stdlib.h exit - terminate a process -
 Tp exp math.h exp, expf, expl - exponential function -
nosym p exp2 math.h exp2, exp2f, exp2l - exponential base 2 functions -
nosym p exp2f math.h exp2, exp2f, exp2l - exponential base 2 functions -
nosym p exp2l math.h exp2, exp2f, exp2l - exponential base 2 functions -
 Tp expf math.h exp, expf, expl - exponential function -
nosym p expl math.h exp, expf, expl - exponential function -
 Tp expm1 math.h expm1, expm1f, expm1l - compute exponential functions -
 Tp expm1f math.h expm1, expm1f, expm1l - compute exponential functions -
nosym p expm1l math.h expm1, expm1f, expm1l - compute exponential functions -
 Tp fabs math.h fabs, fabsf, fabsl - absolute value function -
 Tp fabsf math.h fabs, fabsf, fabsl - absolute value function -
nosym p fabsl math.h fabs, fabsf, fabsl - absolute value function +
 Tp d exp math.h exp, expf, expl - exponential function +
 Tp d exp2 math.h exp2, exp2f, exp2l - exponential base 2 functions +
 Tp exp2f math.h exp2, exp2f, exp2l - exponential base 2 functions +
 Tp exp2l math.h exp2, exp2f, exp2l - exponential base 2 functions +
 Tp expf math.h exp, expf, expl - exponential function +
 Tp expl math.h exp, expf, expl - exponential function +
 Tp d expm1 math.h expm1, expm1f, expm1l - compute exponential functions +
 Tp expm1f math.h expm1, expm1f, expm1l - compute exponential functions +
 Tp expm1l math.h expm1, expm1f, expm1l - compute exponential functions +
 Tp d fabs math.h fabs, fabsf, fabsl - absolute value function +
 Tp fabsf math.h fabs, fabsf, fabsl - absolute value function +
 Tp fabsl math.h fabs, fabsf, fabsl - absolute value function
 Tp faccessat unistd.h access, faccessat - determine accessibility of a file relative to directory file descriptor
 Tp fchdir unistd.h fchdir - change working directory
 Tp fchmod sys/stat.h fchmod - change mode of a file @@ -236,9 +236,9 @@
 Tp fclose stdio.h fclose - close a stream
 Tp fcntl fcntl.h fcntl - file control
 Tp fdatasync unistd.h SIOfdatasync - synchronize the data of a file (REALTIME) -
nosym p fdim math.h fdim, fdimf, fdiml - compute positive difference between two floating-point numbers -
nosym p fdimf math.h fdim, fdimf, fdiml - compute positive difference between two floating-point numbers -
nosym p fdiml math.h fdim, fdimf, fdiml - compute positive difference between two floating-point numbers +
 Tp d fdim math.h fdim, fdimf, fdiml - compute positive difference between two floating-point numbers +
 Tp fdimf math.h fdim, fdimf, fdiml - compute positive difference between two floating-point numbers +
 Tp fdiml math.h fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
 Wp fdopen stdio.h CXfdopen - associate a stream with a file descriptor
 Tp fdopendir dirent.h fdopendir, opendir - open directory associated with file descriptor
 Tp feclearexcept fenv.h feclearexcept - clear floating-point exception @@ -264,28 +264,28 @@
 Tp fgetws stdio.h wchar.h fgetws - get a wide-character string from a stream
 Tp fileno stdio.h CXfileno - map a stream pointer to a file descriptor
 Tp flockfile stdio.h CXflockfile, ftrylockfile, funlockfile - stdio locking functions -
 Tp floor math.h floor, floorf, floorl - floor function -
 Tp floorf math.h floor, floorf, floorl - floor function -
nosym p floorl math.h floor, floorf, floorl - floor function -
nosym p fma math.h fma, fmaf, fmal - floating-point multiply-add -
nosym p fmaf math.h fma, fmaf, fmal - floating-point multiply-add -
nosym p fmal math.h fma, fmaf, fmal - floating-point multiply-add -
nosym p fmax math.h fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers -
nosym p fmaxf math.h fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers -
nosym p fmaxl math.h fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers +
 Tp d floor math.h floor, floorf, floorl - floor function +
 Tp floorf math.h floor, floorf, floorl - floor function +
 Tp floorl math.h floor, floorf, floorl - floor function +
 Tp d fma math.h fma, fmaf, fmal - floating-point multiply-add +
 Tp fmaf math.h fma, fmaf, fmal - floating-point multiply-add +
 Tp fmal math.h fma, fmaf, fmal - floating-point multiply-add +
 Tp d fmax math.h fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers +
 Tp fmaxf math.h fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers +
 Tp fmaxl math.h fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
 Tp fmemopen stdio.h CXfmemopen - open a memory buffer stream -
nosym p fmin math.h fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers -
nosym p fminf math.h fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers -
nosym p fminl math.h fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers -
 Tp fmod math.h fmod, fmodf, fmodl - floating-point remainder value function -
 Tp fmodf math.h fmod, fmodf, fmodl - floating-point remainder value function -
nosym p fmodl math.h fmod, fmodf, fmodl - floating-point remainder value function +
 Tp d fmin math.h fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers +
 Tp fminf math.h fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers +
 Tp fminl math.h fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers +
 Tp d fmod math.h fmod, fmodf, fmodl - floating-point remainder value function +
 Tp fmodf math.h fmod, fmodf, fmodl - floating-point remainder value function +
 Tp fmodl math.h fmod, fmodf, fmodl - floating-point remainder value function
missing  fmtmsg fmtmsg.h XSIfmtmsg - display a message in the specified format on standard error and/or a system console
 Tp fnmatch fnmatch.h fnmatch - match a filename or a pathname
 Tp fopen stdio.h fopen - open a stream
 Tp fork unistd.h fork - create a new process
 Tp fpathconf unistd.h fpathconf, pathconf - get configurable pathname variables -
  d fpclassify math.h fpclassify - classify real floating type +
  d fpclassify math.h fpclassify - classify real floating type
 Tp fprintf stdio.h dprintf, fprintf, printf, snprintf, sprintf - print formatted output
 Tp fputc stdio.h fputc - put a byte on a stream
 Tp fputs stdio.h fputs - put a string on a stream @@ -296,9 +296,9 @@
 Tp freeaddrinfo sys/socket.h netdb.h freeaddrinfo, getaddrinfo - get address information
 Tp freelocale locale.h CXfreelocale - free resources allocated for a locale object
 Tp freopen stdio.h freopen - open a stream -
 Tp frexp math.h frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number -
 Tp frexpf math.h frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number -
 Tp frexpl math.h frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number +
 Tp d frexp math.h frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number +
 Tp frexpf math.h frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number +
 Tp frexpl math.h frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
 Tp fscanf stdio.h fscanf, scanf, sscanf - convert formatted input
 Tp fseek stdio.h fseek, fseeko - reposition a file-position indicator in a stream
 Wp fseeko stdio.h CXfseek, fseeko - reposition a file-position indicator in a stream @@ -392,9 +392,9 @@
 Tp hsearch search.h XSIhcreate, hdestroy, hsearch - manage hash search table
 Tp p htonl arpa/inet.h htonl, htons, ntohl, ntohs - convert values between host and network byte order
 Tp p htons arpa/inet.h htonl, htons, ntohl, ntohs - convert values between host and network byte order -
 Tp hypot math.h hypot, hypotf, hypotl - Euclidean distance function -
 Tp hypotf math.h hypot, hypotf, hypotl - Euclidean distance function -
nosym p hypotl math.h hypot, hypotf, hypotl - Euclidean distance function +
 Tp d hypot math.h hypot, hypotf, hypotl - Euclidean distance function +
 Tp hypotf math.h hypot, hypotf, hypotl - Euclidean distance function +
 Tp hypotl math.h hypot, hypotf, hypotl - Euclidean distance function
 Tp iconv iconv.h iconv - codeset conversion function
 Tp iconv_close iconv.h iconv_close - codeset conversion deallocation function
 Tp iconv_open iconv.h iconv_open - codeset conversion allocation function @@ -402,9 +402,9 @@
 Tp if_indextoname net/if.h if_indextoname - map a network interface index to its corresponding name
 Tp if_nameindex net/if.h if_nameindex - return all network interface names and indexes
 Tp if_nametoindex net/if.h if_nametoindex - map a network interface name to its corresponding index -
 Tp ilogb math.h ilogb, ilogbf, ilogbl - return an unbiased exponent -
 Tp ilogbf math.h ilogb, ilogbf, ilogbl - return an unbiased exponent -
nosym p ilogbl math.h ilogb, ilogbf, ilogbl - return an unbiased exponent +
 Tp d ilogb math.h ilogb, ilogbf, ilogbl - return an unbiased exponent +
 Tp ilogbf math.h ilogb, ilogbf, ilogbl - return an unbiased exponent +
 Tp ilogbl math.h ilogb, ilogbf, ilogbl - return an unbiased exponent
 Tp imaxabs inttypes.h imaxabs - return absolute value
 Tp imaxdiv inttypes.h imaxdiv - return quotient and remainder
 Tp inet_addr arpa/inet.h inet_addr, inet_ntoa - IPv4 address manipulation @@ -425,26 +425,26 @@
 Tp iscntrl_l ctype.h CXiscntrl, iscntrl_l - test for a control character
 Td p isdigit ctype.h isdigit, isdigit_l - test for a decimal digit
 Tp isdigit_l ctype.h CXisdigit, isdigit_l - test for a decimal digit -
  d isfinite math.h isfinite - test for finite value +
  d isfinite math.h isfinite - test for finite value
 Td p isgraph ctype.h isgraph, isgraph_l - test for a visible character
 Tp isgraph_l ctype.h CXisgraph, isgraph_l - test for a visible character -
  d isgreater math.h isgreater - test if x greater than y -
  d isgreaterequal math.h isgreaterequal - test if x is greater than or equal to y -
  d isinf math.h isinf - test for infinity -
  d isless math.h isless - test if x is less than y -
  d islessequal math.h islessequal - test if x is less than or equal to y -
  d islessgreater math.h islessgreater - test if x is less than or greater than y +
  d isgreater math.h isgreater - test if x greater than y +
  d isgreaterequal math.h isgreaterequal - test if x is greater than or equal to y +
  d isinf math.h isinf - test for infinity +
  d isless math.h isless - test if x is less than y +
  d islessequal math.h islessequal - test if x is less than or equal to y +
  d islessgreater math.h islessgreater - test if x is less than or greater than y
 Td p islower ctype.h islower, islower_l - test for a lowercase letter
 Tp islower_l ctype.h CXislower, islower_l - test for a lowercase letter -
  d isnan math.h isnan - test for a NaN -
  d isnormal math.h isnormal - test for a normal value +
  d isnan math.h isnan - test for a NaN +
  d isnormal math.h isnormal - test for a normal value
 Td p isprint ctype.h isprint, isprint_l - test for a printable character
 Tp isprint_l ctype.h CXisprint, isprint_l - test for a printable character
 Tp ispunct ctype.h ispunct, ispunct_l - test for a punctuation character
 Tp ispunct_l ctype.h CXispunct, ispunct_l - test for a punctuation character
 Tp isspace ctype.h isspace, isspace_l - test for a white-space character
 Tp isspace_l ctype.h CXisspace, isspace_l - test for a white-space character -
  d isunordered math.h isunordered - test if arguments are unordered +
  d isunordered math.h isunordered - test if arguments are unordered
 Td p isupper ctype.h isupper, isupper_l - test for an uppercase letter
 Tp isupper_l ctype.h CXisupper, isupper_l - test for an uppercase letter
 Tp p iswalnum wctype.h iswalnum, iswalnum_l - test for an alphanumeric wide-character code @@ -475,9 +475,9 @@
 Tp iswxdigit_l wctype.h CXiswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code
 Tp isxdigit ctype.h isxdigit, isxdigit_l - test for a hexadecimal digit
 Tp isxdigit_l ctype.h CXisxdigit, isxdigit_l - test for a hexadecimal digit -
nosym p j0 math.h XSIj0, j1, jn - Bessel functions of the first kind -
nosym p j1 math.h XSIj0, j1, jn - Bessel functions of the first kind -
nosym p jn math.h XSIj0, j1, jn - Bessel functions of the first kind +
 Tp j0 math.h XSIj0, j1, jn - Bessel functions of the first kind +
 Tp j1 math.h XSIj0, j1, jn - Bessel functions of the first kind +
 Tp jn math.h XSIj0, j1, jn - Bessel functions of the first kind
 Tp jrand48 stdlib.h XSIdrand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
 Tp kill signal.h CXkill - send a signal to a process or a group of processes
 Tp killpg signal.h XSIkillpg - send a signal to a process group @@ -485,53 +485,53 @@
 Tp labs stdlib.h labs, llabs - return a long integer absolute value
 Tp lchown unistd.h lchown - change the owner and group of a symbolic link
 Tp lcong48 stdlib.h XSIdrand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers -
 Tp ldexp math.h ldexp, ldexpf, ldexpl - load exponent of a floating-point number -
 Tp ldexpf math.h ldexp, ldexpf, ldexpl - load exponent of a floating-point number -
nosym p ldexpl math.h ldexp, ldexpf, ldexpl - load exponent of a floating-point number +
 Tp d ldexp math.h ldexp, ldexpf, ldexpl - load exponent of a floating-point number +
 Tp ldexpf math.h ldexp, ldexpf, ldexpl - load exponent of a floating-point number +
 Tp ldexpl math.h ldexp, ldexpf, ldexpl - load exponent of a floating-point number
 Tp ldiv stdlib.h ldiv, lldiv - compute quotient and remainder of a long division
 Tp lfind search.h XSIlsearch, lfind - linear search and update -
nosym p lgamma math.h lgamma, lgammaf, lgammal, signgam - log gamma function -
nosym p lgammaf math.h lgamma, lgammaf, lgammal, signgam - log gamma function -
nosym p lgammal math.h lgamma, lgammaf, lgammal, signgam - log gamma function +
 Tp d lgamma math.h lgamma, lgammaf, lgammal, signgam - log gamma function +
 Tp lgammaf math.h lgamma, lgammaf, lgammal, signgam - log gamma function +
 Tp lgammal math.h lgamma, lgammaf, lgammal, signgam - log gamma function
 Tp link unistd.h link, linkat - link one file to another file relative to two directory file descriptors
 Tp linkat unistd.h link, linkat - link one file to another file relative to two directory file descriptors
 Tp lio_listio aio.h lio_listio - list directed I/O
 Tp listen sys/socket.h listen - listen for socket connections and limit the queue of incoming connections
 Tp llabs stdlib.h labs, llabs - return a long integer absolute value
 Tp lldiv stdlib.h ldiv, lldiv - compute quotient and remainder of a long division -
 Tp llrint math.h llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction -
nosym p llrintf math.h llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction -
nosym p llrintl math.h llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction -
nosym p llround math.h llround, llroundf, llroundl - round to nearest integer value -
nosym p llroundf math.h llround, llroundf, llroundl - round to nearest integer value -
nosym p llroundl math.h llround, llroundf, llroundl - round to nearest integer value +
 Tp d llrint math.h llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction +
 Tp llrintf math.h llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction +
 Tp llrintl math.h llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction +
 Tp d llround math.h llround, llroundf, llroundl - round to nearest integer value +
 Tp llroundf math.h llround, llroundf, llroundl - round to nearest integer value +
 Tp llroundl math.h llround, llroundf, llroundl - round to nearest integer value
 Tp localeconv locale.h localeconv - return locale-specific information
 Tp localtime time.h localtime, localtime_r - convert a time value to a broken-down local time
 Tp localtime_r time.h CXlocaltime, localtime_r - convert a time value to a broken-down local time
 Tp lockf unistd.h XSIlockf - record locking on files -
 Tp log math.h log, logf, logl - natural logarithm function -
 Tp log10 math.h log10, log10f, log10l - base 10 logarithm function -
 Tp log10f math.h log10, log10f, log10l - base 10 logarithm function -
nosym p log10l math.h log10, log10f, log10l - base 10 logarithm function -
 Tp log1p math.h log1p, log1pf, log1pl - compute a natural logarithm -
 Tp log1pf math.h log1p, log1pf, log1pl - compute a natural logarithm -
nosym p log1pl math.h log1p, log1pf, log1pl - compute a natural logarithm -
nosym p log2 math.h log2, log2f, log2l - compute base 2 logarithm functions -
nosym p log2f math.h log2, log2f, log2l - compute base 2 logarithm functions -
nosym p log2l math.h log2, log2f, log2l - compute base 2 logarithm functions -
 Tp logb math.h logb, logbf, logbl - radix-independent exponent -
 Tp logbf math.h logb, logbf, logbl - radix-independent exponent -
nosym p logbl math.h logb, logbf, logbl - radix-independent exponent -
 Tp logf math.h log, logf, logl - natural logarithm function -
nosym p logl math.h log, logf, logl - natural logarithm function +
 Tp d log math.h log, logf, logl - natural logarithm function +
 Tp d log10 math.h log10, log10f, log10l - base 10 logarithm function +
 Tp log10f math.h log10, log10f, log10l - base 10 logarithm function +
 Tp log10l math.h log10, log10f, log10l - base 10 logarithm function +
 Tp d log1p math.h log1p, log1pf, log1pl - compute a natural logarithm +
 Tp log1pf math.h log1p, log1pf, log1pl - compute a natural logarithm +
 Tp log1pl math.h log1p, log1pf, log1pl - compute a natural logarithm +
 Tp d log2 math.h log2, log2f, log2l - compute base 2 logarithm functions +
 Tp log2f math.h log2, log2f, log2l - compute base 2 logarithm functions +
 Tp log2l math.h log2, log2f, log2l - compute base 2 logarithm functions +
 Tp d logb math.h logb, logbf, logbl - radix-independent exponent +
 Tp logbf math.h logb, logbf, logbl - radix-independent exponent +
 Tp logbl math.h logb, logbf, logbl - radix-independent exponent +
 Tp logf math.h log, logf, logl - natural logarithm function +
 Tp logl math.h log, logf, logl - natural logarithm function
 Td p longjmp setjmp.h longjmp - non-local goto
 Tp lrand48 stdlib.h XSIdrand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers -
 Tp lrint math.h lrint, lrintf, lrintl - round to nearest integer value using current rounding direction -
 Tp lrintf math.h lrint, lrintf, lrintl - round to nearest integer value using current rounding direction -
nosym p lrintl math.h lrint, lrintf, lrintl - round to nearest integer value using current rounding direction -
nosym p lround math.h lround, lroundf, lroundl - round to nearest integer value -
nosym p lroundf math.h lround, lroundf, lroundl - round to nearest integer value -
nosym p lroundl math.h lround, lroundf, lroundl - round to nearest integer value +
 Tp d lrint math.h lrint, lrintf, lrintl - round to nearest integer value using current rounding direction +
 Tp lrintf math.h lrint, lrintf, lrintl - round to nearest integer value using current rounding direction +
 Tp lrintl math.h lrint, lrintf, lrintl - round to nearest integer value using current rounding direction +
 Tp d lround math.h lround, lroundf, lroundl - round to nearest integer value +
 Tp lroundf math.h lround, lroundf, lroundl - round to nearest integer value +
 Tp lroundl math.h lround, lroundf, lroundl - round to nearest integer value
 Tp lsearch search.h XSIlsearch, lfind - linear search and update
 Tp lseek unistd.h lseek - move the read/write file offset
 Tp lstat sys/stat.h fstatat, lstat, stat - get file status @@ -562,9 +562,9 @@
 Tp mlock sys/mman.h MLRmlock, munlock - lock or unlock a range of process address space (REALTIME)
 Tp mlockall sys/mman.h MLmlockall, munlockall - lock/unlock the address space of a process (REALTIME)
 Wp mmap sys/mman.h mmap - map pages of memory -
 Tp modf math.h modf, modff, modfl - decompose a floating-point number -
 Tp modff math.h modf, modff, modfl - decompose a floating-point number -
nosym p modfl math.h modf, modff, modfl - decompose a floating-point number +
 Tp modf math.h modf, modff, modfl - decompose a floating-point number +
 Tp modff math.h modf, modff, modfl - decompose a floating-point number +
 Tp modfl math.h modf, modff, modfl - decompose a floating-point number
 Tp mprotect sys/mman.h mprotect - set protection of memory mapping
 Tp mq_close mqueue.h MSGmq_close - close a message queue (REALTIME)
 Tp mq_getattr mqueue.h MSGmq_getattr - get message queue attributes (REALTIME) @@ -585,20 +585,20 @@
 Tp munlock sys/mman.h MLRmlock, munlock - lock or unlock a range of process address space (REALTIME)
 Tp munlockall sys/mman.h MLmlockall, munlockall - lock/unlock the address space of a process (REALTIME)
 Wp munmap sys/mman.h munmap - unmap pages of memory -
nosym p nan math.h nan, nanf, nanl - return quiet NaN -
nosym p nanf math.h nan, nanf, nanl - return quiet NaN -
nosym p nanl math.h nan, nanf, nanl - return quiet NaN +
nosym p nan math.h nan, nanf, nanl - return quiet NaN +
nosym p nanf math.h nan, nanf, nanl - return quiet NaN +
nosym p nanl math.h nan, nanf, nanl - return quiet NaN
 Tp nanosleep time.h CXnanosleep - high resolution sleep -
nosym p nearbyint math.h nearbyint, nearbyintf, nearbyintl - floating-point rounding functions -
nosym p nearbyintf math.h nearbyint, nearbyintf, nearbyintl - floating-point rounding functions -
nosym p nearbyintl math.h nearbyint, nearbyintf, nearbyintl - floating-point rounding functions +
 Tp d nearbyint math.h nearbyint, nearbyintf, nearbyintl - floating-point rounding functions +
 Tp nearbyintf math.h nearbyint, nearbyintf, nearbyintl - floating-point rounding functions +
 Tp nearbyintl math.h nearbyint, nearbyintf, nearbyintl - floating-point rounding functions
 Tp newlocale locale.h CXnewlocale - create or modify a locale object -
 Tp nextafter math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number -
 Tp nextafterf math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number -
nosym p nextafterl math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number -
nosym p nexttoward math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number -
nosym p nexttowardf math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number -
nosym p nexttowardl math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number +
 Tp d nextafter math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number +
 Tp nextafterf math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number +
 Tp nextafterl math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number +
 Tp d nexttoward math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number +
 Tp nexttowardf math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number +
 Tp nexttowardl math.h nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number
 Tp nftw ftw.h XSInftw - walk a file tree
 Tp nice unistd.h XSInice - change the nice value of a process
 Wp nl_langinfo langinfo.h nl_langinfo, nl_langinfo_l - language information @@ -652,9 +652,9 @@
 Tp posix_spawnp spawn.h SPNposix_spawn, posix_spawnp - spawn a process (ADVANCED REALTIME)
missing  posix_typed_mem_get_info sys/mman.h TYMposix_typed_mem_get_info - query typed memory information (ADVANCED REALTIME)
missing  posix_typed_mem_open sys/mman.h TYMposix_typed_mem_open - open a typed memory object (ADVANCED REALTIME) -
 Tp pow math.h pow, powf, powl - power function -
 Tp powf math.h pow, powf, powl - power function -
nosym p powl math.h pow, powf, powl - power function +
 Tp d pow math.h pow, powf, powl - power function +
 Tp powf math.h pow, powf, powl - power function +
 Tp powl math.h pow, powf, powl - power function
 Tp pread unistd.h pread, read - read from a file
 Tp printf stdio.h dprintf, fprintf, printf, snprintf, sprintf - print formatted output
 Tp pselect sys/select.h pselect, select - synchronous I/O multiplexing @@ -793,31 +793,31 @@
 Tp regerror regex.h regcomp, regerror, regexec, regfree - regular expression matching
 Tp regexec regex.h regcomp, regerror, regexec, regfree - regular expression matching
 Tp regfree regex.h regcomp, regerror, regexec, regfree - regular expression matching -
 Tp remainder math.h remainder, remainderf, remainderl - remainder function -
 Tp remainderf math.h remainder, remainderf, remainderl - remainder function -
nosym p remainderl math.h remainder, remainderf, remainderl - remainder function +
 Tp d remainder math.h remainder, remainderf, remainderl - remainder function +
 Tp remainderf math.h remainder, remainderf, remainderl - remainder function +
 Tp remainderl math.h remainder, remainderf, remainderl - remainder function
 Tp remove stdio.h remove - remove a file
 Tp remque search.h XSIinsque, remque - insert or remove an element in a queue -
 Tp remquo math.h remquo, remquof, remquol - remainder functions -
 Tp remquof math.h remquo, remquof, remquol - remainder functions -
nosym p remquol math.h remquo, remquof, remquol - remainder functions +
 Tp d remquo math.h remquo, remquof, remquol - remainder functions +
 Tp remquof math.h remquo, remquof, remquol - remainder functions +
 Tp remquol math.h remquo, remquof, remquol - remainder functions
 Tp rename stdio.h CXrename, renameat - rename file relative to directory file descriptor
 Tp renameat stdio.h CXrename, renameat - rename file relative to directory file descriptor
 Tp rewind stdio.h rewind - reset the file position indicator in a stream
 Tp rewinddir dirent.h rewinddir - reset the position of a directory stream to the beginning of a directory -
 Tp rint math.h rint, rintf, rintl - round-to-nearest integral value -
 Tp rintf math.h rint, rintf, rintl - round-to-nearest integral value -
nosym p rintl math.h rint, rintf, rintl - round-to-nearest integral value +
 Tp d rint math.h rint, rintf, rintl - round-to-nearest integral value +
 Tp rintf math.h rint, rintf, rintl - round-to-nearest integral value +
 Tp rintl math.h rint, rintf, rintl - round-to-nearest integral value
 Tp rmdir unistd.h rmdir - remove a directory -
 Tp round math.h round, roundf, roundl - round to the nearest integer value in a floating-point format -
 Tp roundf math.h round, roundf, roundl - round to the nearest integer value in a floating-point format -
nosym p roundl math.h round, roundf, roundl - round to the nearest integer value in a floating-point format -
 Tp scalbln math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX -
 Tp scalblnf math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX -
nosym p scalblnl math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX -
 Tp scalbn math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX -
 Tp scalbnf math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX -
nosym p scalbnl math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX +
 Tp d round math.h round, roundf, roundl - round to the nearest integer value in a floating-point format +
 Tp roundf math.h round, roundf, roundl - round to the nearest integer value in a floating-point format +
 Tp roundl math.h round, roundf, roundl - round to the nearest integer value in a floating-point format +
 Tp d scalbln math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX +
 Tp scalblnf math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX +
 Tp scalblnl math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX +
 Tp d scalbn math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX +
 Tp scalbnf math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX +
 Tp scalbnl math.h scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX
 Tp scandir dirent.h alphasort, scandir - scan a directory
 Tp scanf stdio.h fscanf, scanf, sscanf - convert formatted input
nosym p sched_get_priority_max sched.h PSsched_get_priority_max, sched_get_priority_min - get priority limits (REALTIME) @@ -894,8 +894,8 @@
 Tp sigismember signal.h CXsigismember - test for a signal in a signal set
 Tp siglongjmp setjmp.h CXsiglongjmp - non-local goto with signal handling
 Tp signal signal.h signal - signal management -
missing  signbit math.h signbit - test sign -
nosym x signgam math.h XSIlgamma, lgammaf, lgammal, signgam - log gamma function +
  d signbit math.h signbit - test sign +
 Bx signgam math.h XSIlgamma, lgammaf, lgammal, signgam - log gamma function
 Tp sigpause signal.h OB XSIsighold, sigignore, sigpause, sigrelse, sigset - signal management
 Tp sigpending signal.h CXsigpending - examine pending signals
 Tp sigprocmask signal.h CXpthread_sigmask, sigprocmask - examine and change blocked signals @@ -907,21 +907,21 @@
 Tp sigtimedwait signal.h CXsigtimedwait, sigwaitinfo - wait for queued signals
 Tp sigwait signal.h CXsigwait - wait for queued signals
 Tp sigwaitinfo signal.h CXsigtimedwait, sigwaitinfo - wait for queued signals -
 Tp sin math.h sin, sinf, sinl - sine function -
 Tp sinf math.h sin, sinf, sinl - sine function -
 Tp sinh math.h sinh, sinhf, sinhl - hyperbolic sine functions -
 Tp sinhf math.h sinh, sinhf, sinhl - hyperbolic sine functions -
nosym p sinhl math.h sinh, sinhf, sinhl - hyperbolic sine functions -
nosym p sinl math.h sin, sinf, sinl - sine function +
 Tp d sin math.h sin, sinf, sinl - sine function +
 Tp sinf math.h sin, sinf, sinl - sine function +
 Tp d sinh math.h sinh, sinhf, sinhl - hyperbolic sine functions +
 Tp sinhf math.h sinh, sinhf, sinhl - hyperbolic sine functions +
 Tp sinhl math.h sinh, sinhf, sinhl - hyperbolic sine functions +
 Tp sinl math.h sin, sinf, sinl - sine function
 Tp sleep unistd.h sleep - suspend execution for an interval of time
 Tp snprintf stdio.h dprintf, fprintf, printf, snprintf, sprintf - print formatted output
 Tp sockatmark sys/socket.h sockatmark - determine whether a socket is at the out-of-band mark
 Tp socket sys/socket.h socket - create an endpoint for communication
 Tp socketpair sys/socket.h socketpair - create a pair of connected sockets
 Tp sprintf stdio.h dprintf, fprintf, printf, snprintf, sprintf - print formatted output -
 Tp sqrt math.h sqrt, sqrtf, sqrtl - square root function -
 Tp sqrtf math.h sqrt, sqrtf, sqrtl - square root function -
nosym p sqrtl math.h sqrt, sqrtf, sqrtl - square root function +
 Tp d sqrt math.h sqrt, sqrtf, sqrtl - square root function +
 Tp sqrtf math.h sqrt, sqrtf, sqrtl - square root function +
 Tp sqrtl math.h sqrt, sqrtf, sqrtl - square root function
 Tp srand stdlib.h rand, rand_r, srand - pseudo-random number generator
 Tp srand48 stdlib.h XSIdrand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
 Tp srandom stdlib.h XSIinitstate, random, setstate, srandom - pseudo-random number functions @@ -986,12 +986,12 @@
 Tp sysconf unistd.h sysconf - get configurable system variables
 Tp syslog syslog.h XSIcloselog, openlog, setlogmask, syslog - control system log
 Tp system stdlib.h system - issue a command -
 Tp tan math.h tan, tanf, tanl - tangent function -
 Tp tanf math.h tan, tanf, tanl - tangent function -
 Tp tanh math.h tanh, tanhf, tanhl - hyperbolic tangent functions -
 Tp tanhf math.h tanh, tanhf, tanhl - hyperbolic tangent functions -
nosym p tanhl math.h tanh, tanhf, tanhl - hyperbolic tangent functions -
nosym p tanl math.h tan, tanf, tanl - tangent function +
 Tp d tan math.h tan, tanf, tanl - tangent function +
 Tp tanf math.h tan, tanf, tanl - tangent function +
 Tp d tanh math.h tanh, tanhf, tanhl - hyperbolic tangent functions +
 Tp tanhf math.h tanh, tanhf, tanhl - hyperbolic tangent functions +
 Tp tanhl math.h tanh, tanhf, tanhl - hyperbolic tangent functions +
 Tp tanl math.h tan, tanf, tanl - tangent function
 Tp tcdrain termios.h tcdrain - wait for transmission of output
 Tp tcflow termios.h tcflow - suspend or restart the transmission or reception of data
 Tp tcflush termios.h tcflush - flush non-transmitted output data, non-read input data, or both @@ -1005,9 +1005,9 @@
 Tp telldir dirent.h XSItelldir - current location of a named directory stream
 Tp tempnam stdio.h OB XSItempnam - create a name for a temporary file
 Tp tfind search.h XSItdelete, tfind, tsearch, twalk - manage a binary search tree -
nosym p tgamma math.h tgamma, tgammaf, tgammal - compute gamma() function -
nosym p tgammaf math.h tgamma, tgammaf, tgammal - compute gamma() function -
nosym p tgammal math.h tgamma, tgammaf, tgammal - compute gamma() function +
  p d tgamma math.h tgamma, tgammaf, tgammal - compute gamma() function +
nosym p tgammaf math.h tgamma, tgammaf, tgammal - compute gamma() function +
 Tp tgammal math.h tgamma, tgammaf, tgammal - compute gamma() function
 Tp time time.h time - get time
 Tp timer_create signal.h time.h CXtimer_create - create a per-process timer
 Tp timer_delete time.h CXtimer_delete - delete a per-process timer @@ -1029,10 +1029,10 @@
 Tp towlower_l wctype.h CXtowlower, towlower_l - transliterate uppercase wide-character code to lowercase
 Tp p towupper wctype.h towupper, towupper_l - transliterate lowercase wide-character code to uppercase
 Tp towupper_l wctype.h CXtowupper, towupper_l - transliterate lowercase wide-character code to uppercase -
 Tp trunc math.h trunc, truncf, truncl - round to truncated integer value +
 Tp d trunc math.h trunc, truncf, truncl - round to truncated integer value
 Tp truncate unistd.h truncate - truncate a file to a specified length -
 Tp truncf math.h trunc, truncf, truncl - round to truncated integer value -
nosym p truncl math.h trunc, truncf, truncl - round to truncated integer value +
 Tp truncf math.h trunc, truncf, truncl - round to truncated integer value +
 Tp truncl math.h trunc, truncf, truncl - round to truncated integer value
 Tp tsearch search.h XSItdelete, tfind, tsearch, twalk - manage a binary search tree
 Tp ttyname unistd.h ttyname, ttyname_r - find the pathname of a terminal
 Tp ttyname_r unistd.h ttyname, ttyname_r - find the pathname of a terminal @@ -1132,8 +1132,8 @@
 Tp write unistd.h pwrite, write - write on a file
 Tp writev sys/uio.h XSIwritev - write a vector
 Tp wscanf stdio.h wchar.h fwscanf, swscanf, wscanf - convert formatted wide-character input -
nosym p y0 math.h XSIy0, y1, yn - Bessel functions of the second kind -
nosym p y1 math.h XSIy0, y1, yn - Bessel functions of the second kind -
nosym p yn math.h XSIy0, y1, yn - Bessel functions of the second kind +
 Tp y0 math.h XSIy0, y1, yn - Bessel functions of the second kind +
 Tp y1 math.h XSIy0, y1, yn - Bessel functions of the second kind +
 Tp yn math.h XSIy0, y1, yn - Bessel functions of the second kind
-

stats

+

stats

-- 2.20.1