Browse Source

B language, introduce `log10'

pre-master-46
rlar 12 years ago
parent
commit
abfd38b535
  1. 1
      src/spicelib/parser/inpptree.c

1
src/spicelib/parser/inpptree.c

@ -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 } ,

Loading…
Cancel
Save