forked from KolibriOS/kolibrios
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:
parent
2a32cfda1d
commit
705c0883ac
@ -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
|
||||||
|
@ -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},
|
||||||
|
Loading…
Reference in New Issue
Block a user