Subversion Repositories HelenOS-historic

Rev

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

Rev 874 Rev 1031
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
#ifndef __ia32_FUNCTIONS_H__
29
#ifndef __SOFTFLOAT_FUNCTIONS_H__
30
#define __ia32_FUNCTIONS_H__
30
#define __SOFTFLOAT_FUNCTIONS_H__
31
 
31
 
32
#define float32_to_int(X) float32_to_int32(X);
32
#define float32_to_int(X) float32_to_int32(X);
33
#define float32_to_long(X) float32_to_int32(X);
33
#define float32_to_long(X) float32_to_int32(X);
34
#define float32_to_longlong(X) float32_to_int64(X);
34
#define float32_to_longlong(X) float32_to_int64(X);
35
 
35
 
Line 59... Line 59...
59
 
59
 
60
#define uint_to_float64(X) uint32_to_float64(X);
60
#define uint_to_float64(X) uint32_to_float64(X);
61
#define ulong_to_float64(X) uint32_to_float64(X);
61
#define ulong_to_float64(X) uint32_to_float64(X);
62
#define ulonglong_to_float64(X) uint64_to_float64(X);
62
#define ulonglong_to_float64(X) uint64_to_float64(X);
63
 
63
 
64
 
-
 
65
 
-
 
66
#endif
64
#endif
-
 
65