variable.h, reduce visibility of auxiliary struct xxx to variable.c

This commit is contained in:
rlar 2016-07-31 17:31:31 +02:00
parent b302dbe975
commit d32968bdaa
2 changed files with 6 additions and 5 deletions

View File

@ -882,6 +882,12 @@ vareval(char *string)
}
struct xxx {
struct variable *x_v;
char x_char;
};
static int
vcmp(const void *a, const void *b)
{

View File

@ -29,11 +29,6 @@ struct variable {
#define va_string va_V.vV_string
#define va_vlist va_V.vV_list
struct xxx {
struct variable *x_v;
char x_char;
};
extern struct variable *variables;
extern bool cp_echo;