Delete trailing whitespace at end of lines.
[pspp] / src / data / vardict.h
index 8ae72866053da78758958ff125d6c304c3c3b606..0d93e35c289dfaad04debc2f7ac80bf0bf199789 100644 (file)
    This header file should only be included by variable.c and
    dictionary.c. */
 
+struct dictionary ;
+
 /* Dictionary data stored in variable. */
-struct vardict_info 
+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 *);