Crypt-Scrypt

 view release on metacpan or  search on metacpan

src/configure  view on Meta::CPAN

    char *term;
    double value;
    value = strtod (string, &term);
    if (value != 69 || term != (string + 4))
      return 1;
  }

  {
    /* Under Solaris 2.4, strtod returns the wrong value for the
       terminating character under some conditions.  */
    char *string = "NaN";
    char *term;
    strtod (string, &term);
    if (term != string && *(term - 1) == 0)
      return 1;
  }
  return 0;
}

_ACEOF
rm -f conftest$ac_exeext



( run in 0.402 second using v1.01-cache-2.11-cpan-4d50c553e7e )