Subversion Repositories HelenOS-historic

Rev

Rev 534 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 534 Rev 625
Line 60... Line 60...
60
double fmath_fint(double num, double *intp)
60
double fmath_fint(double num, double *intp)
61
{
61
{
62
    fmath_ld_union_t fmath_ld_union_num;
62
    fmath_ld_union_t fmath_ld_union_num;
63
    fmath_ld_union_t fmath_ld_union_int;
63
    fmath_ld_union_t fmath_ld_union_int;
64
    signed short exp;
64
    signed short exp;
-
 
65
    __u64 mask;
65
    __u64 mask,mantisa;
66
    // __u64 mantisa;
66
    int i;
67
    int i;
67
   
68
   
68
    exp=fmath_get_binary_exponent(num);
69
    exp=fmath_get_binary_exponent(num);
69
   
70
   
70
    if (exp<0) {
71
    if (exp<0) {