X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fformat.c;h=55e166e817a0c075de9fab55c29a5ae4afab73c5;hb=1e0e76eaeb51ef0c15fdcfc4bd12d9310c16a88b;hp=3a380bda45c0d960758739531289436da37f7af9;hpb=1133aae2eb44a012939a95613bf5cd1698f5b5e9;p=pspp diff --git a/src/data/format.c b/src/data/format.c index 3a380bda45..55e166e817 100644 --- a/src/data/format.c +++ b/src/data/format.c @@ -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};