1999-09-18 10:51:31 +00:00
|
|
|
#include "f2c.h"
|
|
|
|
|
2003-07-11 03:42:19 +00:00
|
|
|
shortint
|
|
|
|
h_sign (shortint * a, shortint * b)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
2003-07-11 03:42:19 +00:00
|
|
|
shortint x;
|
|
|
|
x = (*a >= 0 ? *a : -*a);
|
|
|
|
return (*b >= 0 ? x : -x);
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|