New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / compiler / mlib / infinity.c
blob24b5ac324bc07d49dc692372f9116275c856ea52
1 /*
2 Copyright © 2002, The AROS Development Team. All rights reserved.
3 $Id$
5 Definition of the magic infinity value.
6 XXX Needs to be made better CPU dependant! Basically it assumes we are
7 dealing with IEEE 754 floating point.
8 */
10 #include <aros/system.h>
12 #if AROS_BIG_ENDIAN
13 char __infinity[] = { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 };
14 #else
15 char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f };
16 #endif