summaryrefslogtreecommitdiff
path: root/expand.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-01-20 13:16:46 -0500
committerPaul Smith <psmith@gnu.org>2013-01-20 13:16:46 -0500
commit51fb930ef2ec8c479fb113ae6b3d5549a0bab892 (patch)
tree5d8fdb41d3bec8bead6760855843d73e9afbc287 /expand.c
parenta45f25ece30e4101ae77c90d2270d253ea9a82ec (diff)
downloadgunmake-51fb930ef2ec8c479fb113ae6b3d5549a0bab892.tar.gz
Rename struct floc to typedef gmk_floc as an externally scoped symbol.
Diffstat (limited to 'expand.c')
-rw-r--r--expand.c8
1 files changed, 4 insertions, 4 deletions
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 <http://www.gnu.org/licenses/>. */
/* 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);