Update of /cvsroot/binaryphp/binaryphp
In directory sc8-pr-cvs1:/tmp/cvs-serv31298
Modified Files:
functions.php
Log Message:
Index: functions.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/functions.php,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** functions.php 12 Aug 2003 08:39:07 -0000 1.40
--- functions.php 12 Aug 2003 22:10:10 -0000 1.41
***************
*** 66,69 ****
--- 66,84 ----
'chr' => array(null, 'string/chr.cpp'),
'ord' => array(null, 'string/ord.cpp'),
+ 'abs' => array('cstdlib', 'math/abs.cpp'),
+ 'asin' => array('cmath', 'math/asin.cpp');
+ 'atan2' => array('cmath', 'math/atan2.cpp');
+ 'cos' => array('cmath', 'math/cos.cpp');
+ 'floor' => array('cmath', 'math/floor.cpp');
+ 'sin' => array('cmath', 'math/sin.cpp');
+ 'sqrt' => array('cmath', 'math/sqrt.cpp');
+ 'tanh' => array('cmath', 'math/tanh.cpp');
+ 'tan' => array('cmath', 'math/tan.cpp');
+ 'sinh' => array('cmath', 'math/sinh.cpp');
+ 'pow' => array('cmath', 'math/pow.cpp');
+ 'cosh' => array('cmath', 'math/cosh.cpp');
+ 'ceil' => array('cmath', 'math/ceil.cpp');
+ 'atan' => array('cmath', 'math/atan.cpp');
+ 'acos' => array('cmath', 'math/acos.cpp');
null
);
|