X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=src%2Fdata%2Fvardict.h;h=2af9b92b8721c45b9764883eadd9e73b47501660;hb=f641982c71972cbf57eb9469d14af8629bf79d7b;hp=8ae72866053da78758958ff125d6c304c3c3b606;hpb=480a0746507ce73d26f528b56dc3ed80195096e0;p=pspp diff --git a/src/data/vardict.h b/src/data/vardict.h index 8ae7286605..2af9b92b87 100644 --- a/src/data/vardict.h +++ b/src/data/vardict.h @@ -23,11 +23,14 @@ This header file should only be included by variable.c and dictionary.c. */ +struct dictionary ; + /* Dictionary data stored in variable. */ struct vardict_info { int dict_index; /* Dictionary index containing the variable. */ int case_index; /* Index into case of variable data. */ + struct dictionary *dict; /* The dictionary containing the variable */ }; const struct vardict_info *var_get_vardict (const struct variable *);