several fixes for new basic compiler

This commit is contained in:
ceriel
1988-07-01 17:30:06 +00:00
parent 4d9965a774
commit a693896a67
5 changed files with 35 additions and 13 deletions

View File

@@ -7,3 +7,10 @@ double v;
if( v<0) return(-1);
return(0);
}
_forsgn(v)
double v;
{
if (v >= 0) return 1;
return -1;
}