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
asinh
atanh
acosh
frexp
hypot
ldexp
cosh
sinh
tanh
acos
@ -131,6 +131,9 @@ atan
atan2
ceil
cos
sin
tan
sqrt
exp
fabs
floor

View File

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