*** empty log message ***
This commit is contained in:
9
lang/basic/lib/sgn.c
Normal file
9
lang/basic/lib/sgn.c
Normal file
@@ -0,0 +1,9 @@
|
||||
/* $Header $ */
|
||||
|
||||
_sgn(v)
|
||||
double v;
|
||||
{
|
||||
if( v>0) return(1);
|
||||
if( v<0) return(-1);
|
||||
return(0);
|
||||
}
|
||||
Reference in New Issue
Block a user