blob: 7edf0e18848d523175f75f9780bc3cadd1dbf6f4 [file] [log] [blame]
void abort (void);
void exit (int);
int
test_endianness()
{
union doubleword
{
double d;
unsigned long u[2];
} dw;
dw.d = 10;
return dw.u[0] != 0 ? 1 : 0;
}
int
test_endianness_vol()
{
union doubleword
{
volatile double d;
volatile long u[2];
} dw;
dw.d = 10;
return dw.u[0] != 0 ? 1 : 0;
}
int
main (void)
{
if (test_endianness () != test_endianness_vol ())
abort ();
exit (0);
}