Added result_class parameter to tab_double and updated all callers. Removed tab_fixed
[pspp] / src / data / format.c
index 3a380bda45c0d960758739531289436da37f7af9..55e166e817a0c075de9fab55c29a5ae4afab73c5 100644 (file)
@@ -1158,3 +1158,6 @@ get_fmt_desc (enum fmt_type type)
 }
 
 const struct fmt_spec F_8_0 = {FMT_F, 8, 0};
+const struct fmt_spec F_8_2 = {FMT_F, 8, 2};
+const struct fmt_spec F_4_3 = {FMT_F, 4, 3};
+const struct fmt_spec F_5_1 = {FMT_F, 5, 1};