Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2552

Show
Ignore:
Timestamp:
09/05/07 23:48:56 (1 year ago)
Author:
kris
Message:

closes #612

thanks h3r3tic

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/math/IEEE.d

    r2546 r2552  
    338338 
    339339/** 
    340  * Returns x rounded to a long value using the FE_TONEAREST rounding mode. 
    341  * If the integer value of x is 
    342  * greater than long.max, the result is 
     340 * Returns x rounded to an integer value using the FE_TONEAREST rounding  
     341 * mode. If the integer value of x is greater than int.max, the result is 
    343342 * indeterminate. 
    344343 */ 
    345 extern (C) real rndtonl(real x); 
     344extern (C) int rndtonl(real x); 
    346345 
    347346/**