significant progess on SPOs
[pspp] / dump-float.c
1 #include <stdint.h>
2 #include <stdio.h>
3
4 int
5 main (void)
6 {
7   union
8     {
9       uint8_t b[8];
10       double d;
11     }
12   x = { .b = { 0x18, 0x00, 0x00, 0x1c, 0xf0, 0xff, 0xff, 0x5f } };
13   printf ("%f\n", x.d);
14   return 0;
15 }