date and time created 83/01/21 11:19:18 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / h_sign.c
CommitLineData
da8d43c5
DW
1/*
2 * "@(#)h_sign.c 1.1"
3 */
4
5short h_sign(a,b)
6short *a, *b;
7{
8short x;
9x = (*a >= 0 ? *a : - *a);
10return( *b >= 0 ? x : -x);
11}