Changeset 82d062d8 in mainline for uspace/lib/c/include/ieee_double.h


Ignore:
Timestamp:
2012-10-31T21:03:03Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f220e25
Parents:
34b9299
Message:

Add a missing copyright message and cstyle.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ieee_double.h

    r34b9299 r82d062d8  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
     28
    2829#ifndef IEEE_DOUBLE_H_
    2930#define IEEE_DOUBLE_H_
     
    3132#include <stdint.h>
    3233#include <bool.h>
    33 
    3434
    3535/** Represents a non-negative floating point number: significand * 2^exponent */
     
    4040        int exponent;
    4141} fp_num_t;
    42 
    4342
    4443/** Double number description according to IEEE 754. */
     
    6665} ieee_double_t;
    6766
    68 
    69 ieee_double_t extract_ieee_double(double val);
     67extern ieee_double_t extract_ieee_double(double);
    7068
    7169#endif
Note: See TracChangeset for help on using the changeset viewer.