OK, now import them...

Duh.
This commit is contained in:
Jeff Teunissen 2011-12-09 22:42:43 -05:00
parent 361255cf31
commit 4f4d6b5675
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ float (float x) acos = #0;
float (float x) atan = #0;
float (float y, float x) atan2 = #0;
float (float x) log = #0;
float (float x) log2 = #0;
float (float x) log10 = #0;
float (float x, float y) pow = #0;
float (float x) sinh = #0;
@ -30,3 +31,6 @@ float (float x) tanh = #0;
float (float x) asinh = #0;
float (float x) acosh = #0;
float (float x) atanh = #0;
float (float x) sqrt = #0;
float (float x) cbrt = #0;
float (float x, float y) hypot = #0;