summaryrefslogtreecommitdiff
path: root/load.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
commit7be368b76d7b3006d86a44652098c70a38da1343 (patch)
tree5d8fdb41d3bec8bead6760855843d73e9afbc287 /load.c
parent0ea5e86742027478d5fdcfd42e81fd32ffafdfc3 (diff)
downloadmake-7be368b76d7b3006d86a44652098c70a38da1343.tar.gz
Rename struct floc to typedef gmk_floc as an externally scoped symbol.
Diffstat (limited to 'load.c')
-rw-r--r--load.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/load.c b/load.c
index 3e06982d..0ed05f9a 100644
--- a/load.c
+++ b/load.c
@@ -33,7 +33,7 @@ static void *global_dl = NULL;
#include "variable.h"
static int
-init_symbol (const struct floc *flocp, const char *ldname, load_func_t symp)
+init_symbol (const gmk_floc *flocp, const char *ldname, load_func_t symp)
{
int r;
const char *p;
@@ -58,7 +58,7 @@ init_symbol (const struct floc *flocp, const char *ldname, load_func_t symp)
}
int
-load_file (const struct floc *flocp, const char **ldname, int noerror)
+load_file (const gmk_floc *flocp, const char **ldname, int noerror)
{
load_func_t symp;
const char *fp;
@@ -159,7 +159,7 @@ load_file (const struct floc *flocp, const char **ldname, int noerror)
#else
int
-load_file (const struct floc *flocp, const char **ldname, int noerror)
+load_file (const gmk_floc *flocp, const char **ldname, int noerror)
{
if (! noerror)
fatal (flocp, _("The 'load' operation is not supported on this platform."));