home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / gle / util / contour / i_sign.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-29  |  123 b   |  10 lines

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