start moving beyond PMModelItemInfo
[pspp] / dump-float2.c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include <string.h>
4
5 int
6 main (void)
7 {
8   double d = 100zz;
9   fwrite (&d, 1, sizeof d, stdout);
10   return 0;
11 }