09c656ca68
Obtained from: netlib.att.com
13 lines
193 B
C
13 lines
193 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
integer i_sign(a,b) integer *a, *b;
|
|
#else
|
|
integer i_sign(integer *a, integer *b)
|
|
#endif
|
|
{
|
|
integer x;
|
|
x = (*a >= 0 ? *a : - *a);
|
|
return( *b >= 0 ? x : -x);
|
|
}
|