1 2 3 4 5 6 7 8 9
#include "f2c.h" integer i_sign (integer * a, integer * b) { integer x; x = (*a >= 0 ? *a : -*a); return (*b >= 0 ? x : -x); }