B language, introduce `log10'

This commit is contained in:
rlar 2014-09-12 19:06:54 +02:00
parent 88bc7874f0
commit abfd38b535
1 changed files with 1 additions and 0 deletions

View File

@ -145,6 +145,7 @@ static struct func {
{ "exp", PTF_EXP, (void(*)(void)) PTexp } ,
{ "ln", PTF_LOG, (void(*)(void)) PTlog } ,
{ "log", PTF_LOG10, (void(*)(void)) PTlog10 } ,
{ "log10", PTF_LOG10, (void(*)(void)) PTlog10 } ,
{ "sgn", PTF_SGN, (void(*)(void)) PTsgn } ,
{ "sin", PTF_SIN, (void(*)(void)) PTsin } ,
{ "sinh", PTF_SINH, (void(*)(void)) PTsinh } ,