Update of /cvsroot/binaryphp/binaryphp
In directory sc8-pr-cvs1:/tmp/cvs-serv1570
Modified Files:
functions.php
Log Message:
fixed parse errors, turned semicolons to commas
Index: functions.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/functions.php,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** functions.php 12 Aug 2003 22:10:10 -0000 1.41
--- functions.php 12 Aug 2003 22:26:26 -0000 1.42
***************
*** 67,85 ****
'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
);
?>
--- 67,85 ----
'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
);
?>
|