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
|
||||
asinh
|
||||
atanh
|
||||
acosh
|
||||
frexp
|
||||
hypot
|
||||
ldexp
|
||||
cosh
|
||||
sinh
|
||||
tanh
|
||||
acos
|
||||
@ -131,6 +131,9 @@ atan
|
||||
atan2
|
||||
ceil
|
||||
cos
|
||||
sin
|
||||
tan
|
||||
sqrt
|
||||
exp
|
||||
fabs
|
||||
floor
|
||||
|
@ -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},
|
||||
|
Loading…
Reference in New Issue
Block a user