home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / FORTRAN / F2C_SRC.ZIP / F2C / LIBF77 / D_SIGN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  133 b   |  10 lines

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