X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fformat.c;h=55e166e817a0c075de9fab55c29a5ae4afab73c5;hb=d2b769f76cbbadede9bd68da7caecabd69235bfa;hp=3a380bda45c0d960758739531289436da37f7af9;hpb=c7037d42254bb3c0e1dac2e1bd6ef95c6db8ba27;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};