diff options
Diffstat (limited to 'tree234.c')
| -rw-r--r-- | tree234.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1501,12 +1501,12 @@ static void error(const char *fmt, ...) { } /* The array representation of the data. */ -void **array; -int arraylen, arraysize; -cmpfn234 cmp; +static void **array; +static int arraylen, arraysize; +static cmpfn234 cmp; /* The tree representation of the same data. */ -tree234 *tree; +static tree234 *tree; /* * Routines to provide a diagnostic printout of a tree. Currently |