X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvardict.h;h=2af9b92b8721c45b9764883eadd9e73b47501660;hb=b8e2dc45abf0cf7a398cb8cef9d9faa24bee6f6c;hp=dd4f7321700b232b98c2b483e0fa1bef5070c0b5;hpb=338fb2a2e84df6427a2fdee6769421f57d5666d8;p=pspp-builds.git diff --git a/src/data/vardict.h b/src/data/vardict.h index dd4f7321..2af9b92b 100644 --- a/src/data/vardict.h +++ b/src/data/vardict.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -24,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 *);