Subversion Repositories HelenOS-historic

Rev

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

Rev 731 Rev 737
Line 29... Line 29...
29
#ifndef __MUL_H__
29
#ifndef __MUL_H__
30
#define __MUL_H__
30
#define __MUL_H__
31
 
31
 
32
float32 mulFloat32(float32 a, float32 b);
32
float32 mulFloat32(float32 a, float32 b);
33
 
33
 
-
 
34
float64 mulFloat64(float64 a, float64 b);
-
 
35
 
-
 
36
void mul64integers(__u64 a,__u64 b, __u64 *lo, __u64 *hi);
-
 
37
 
34
#endif
38
#endif
35
 
39