Subversion Repositories HelenOS-historic

Rev

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

Rev 857 Rev 858
Line 207... Line 207...
207
unsigned long __fixunssfdi(float a)
207
unsigned long __fixunssfdi(float a)
208
{
208
{
209
    float32 fa;
209
    float32 fa;
210
    fa.f = a;
210
    fa.f = a;
211
   
211
   
212
    return float32_to_long(fa);
212
    return float32_to_ulong(fa);
213
}
213
}
214
unsigned long __fixunsdfdi(double a)
214
unsigned long __fixunsdfdi(double a)
215
{
215
{
216
}
216
}
217
 
217