From 51fb930ef2ec8c479fb113ae6b3d5549a0bab892 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 20 Jan 2013 13:16:46 -0500 Subject: Rename struct floc to typedef gmk_floc as an externally scoped symbol. --- expand.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'expand.c') diff --git a/expand.c b/expand.c index cce3bcd..22a5a35 100644 --- a/expand.c +++ b/expand.c @@ -26,7 +26,7 @@ this program. If not, see . */ /* Initially, any errors reported when expanding strings will be reported against the file where the error appears. */ -const struct floc **expanding_var = &reading_file; +const gmk_floc **expanding_var = &reading_file; /* The next two describe the variable output buffer. This buffer is used to hold the variable-expansion of a line of the @@ -96,8 +96,8 @@ char * recursively_expand_for_file (struct variable *v, struct file *file) { char *value; - const struct floc *this_var; - const struct floc **saved_varp; + const gmk_floc *this_var; + const gmk_floc **saved_varp; struct variable_set_list *save = 0; int set_reading = 0; @@ -463,7 +463,7 @@ variable_expand_for_file (const char *line, struct file *file) { char *result; struct variable_set_list *savev; - const struct floc *savef; + const gmk_floc *savef; if (file == 0) return variable_expand (line); -- cgit v1.2.3