ack/lang/basic/lib/sgn.c
2016-12-12 21:16:32 +01:00

18 lines
165 B
C

/* $Id$ */
int _sgn(double v)
{
if (v > 0)
return (1);
if (v < 0)
return (-1);
return (0);
}
int _forsgn(double v)
{
if (v >= 0)
return 1;
return -1;
}