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

  1. #include "f2c.h"
  2.  
  3. #define log10e 0.43429448190325182765
  4.  
  5. double r_lg10(x)
  6. real *x;
  7. {
  8. double log();
  9.  
  10. return( log10e * log(*x) );
  11. }
  12.