X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2Fvariable-parser.h;h=9760d857e9969f340135664bd4cf9f938d808826;hb=e070d7ddf78446b9852c61c9af84ad3659bac3b3;hp=f71a778e467841f6213b43c0227fa2c5de874161;hpb=c708736bdd0fea4b79f3ee4a10e00c3abb95d9e3;p=pspp diff --git a/src/language/lexer/variable-parser.h b/src/language/lexer/variable-parser.h index f71a778e46..9760d857e9 100644 --- a/src/language/lexer/variable-parser.h +++ b/src/language/lexer/variable-parser.h @@ -55,8 +55,7 @@ enum PV_NO_SCRATCH = 00200 /* Disallow scratch variables. */ }; -struct variable *parse_variable (void); -struct variable *parse_dict_variable (const struct dictionary *); +struct variable *parse_variable (const struct dictionary *); bool parse_variables (const struct dictionary *, struct variable ***, size_t *, int opts); bool parse_variables_pool (struct pool *, const struct dictionary *, @@ -66,8 +65,10 @@ bool parse_var_set_vars (const struct var_set *, struct variable ***, size_t *, bool parse_DATA_LIST_vars (char ***names, size_t *cnt, int opts); bool parse_DATA_LIST_vars_pool (struct pool *, char ***names, size_t *cnt, int opts); -bool parse_mixed_vars (char ***names, size_t *cnt, int opts); -bool parse_mixed_vars_pool (struct pool *, +bool parse_mixed_vars (const struct dictionary *dict, + char ***names, size_t *cnt, int opts); +bool parse_mixed_vars_pool (const struct dictionary *dict, + struct pool *, char ***names, size_t *cnt, int opts); #endif /* variable-parser.h */