libc.obj: added missing sqrt, cosh functions

libc.def: added sqrt, cosh, sin, tan functions

git-svn-id: svn://kolibrios.org@9761 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
vitalkrilov 2022-04-10 23:56:16 +00:00
parent 2a32cfda1d
commit 705c0883ac
2 changed files with 6 additions and 1 deletions

View File

@ -119,10 +119,10 @@ socketpair
acosh acosh
asinh asinh
atanh atanh
acosh
frexp frexp
hypot hypot
ldexp ldexp
cosh
sinh sinh
tanh tanh
acos acos
@ -131,6 +131,9 @@ atan
atan2 atan2
ceil ceil
cos cos
sin
tan
sqrt
exp exp
fabs fabs
floor floor

View File

@ -265,6 +265,7 @@ ksys_dll_t EXPORTS[] = {
{"frexp", &frexp}, {"frexp", &frexp},
{"hypot", &hypot}, {"hypot", &hypot},
{"ldexp", &ldexp}, {"ldexp", &ldexp},
{"cosh", &cosh},
{"sinh", &sinh}, {"sinh", &sinh},
{"tanh", &tanh}, {"tanh", &tanh},
{"acos", &acos}, {"acos", &acos},
@ -275,6 +276,7 @@ ksys_dll_t EXPORTS[] = {
{"cos", &cos}, {"cos", &cos},
{"sin", &sin}, {"sin", &sin},
{"tan", &tan}, {"tan", &tan},
{"sqrt", &sqrt},
{"exp", &exp}, {"exp", &exp},
{"fabs", &fabs}, {"fabs", &fabs},
{"floor", &floor}, {"floor", &floor},