Ignore:
Timestamp:
2018-09-13T12:05:53Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc74cb5
Parents:
b2aaaa0
git-author:
Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
git-committer:
Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
Message:

Fix vertical spacing with new Ccheck revision.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/double_to_str.c

    rb2aaaa0 r09ab0a9a  
    5252static const int gamma = -32;
    5353
    54 
    5554/** Returns true if the most-significant bit of num.significand is set. */
    5655static bool is_normalized(fp_num_t num)
     
    8079        return num;
    8180}
    82 
    8381
    8482/** Returns x * y with an error of less than 0.5 ulp. */
     
    130128}
    131129
    132 
    133130/** Returns a - b. Both must have the same exponent. */
    134131static fp_num_t subtract(fp_num_t a, fp_num_t b)
     
    144141        return result;
    145142}
    146 
    147143
    148144/** Returns the interval [low, high] of numbers that convert to binary val. */
     
    248244        *scaled_upper_bound = upper_scaled;
    249245}
    250 
    251246
    252247/** Rounds the last digit of buf so that it is closest to the converted number.*/
     
    299294}
    300295
    301 
    302296/** Generates the shortest accurate decimal string representation.
    303297 *
     
    478472}
    479473
    480 
    481474/** Converts a non-special double into its shortest accurate string
    482475 *  representation.
     
    698691        }
    699692}
    700 
    701693
    702694/** Converts a non-special double into its string representation.
     
    792784        return len;
    793785}
    794 
Note: See TracChangeset for help on using the changeset viewer.