Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/math/generic/fmod.c

    ra35b458 rb69786e  
    5555{
    5656        // FIXME: replace with exact arithmetics
    57 
     57       
    5858        float32_t quotient = trunc_f32(dividend / divisor);
    59 
     59       
    6060        return (dividend - quotient * divisor);
    6161}
     
    8080{
    8181        // FIXME: replace with exact arithmetics
    82 
     82       
    8383        float64_t quotient = trunc_f64(dividend / divisor);
    84 
     84       
    8585        return (dividend - quotient * divisor);
    8686}
Note: See TracChangeset for help on using the changeset viewer.