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
commit51fb930ef2ec8c479fb113ae6b3d5549a0bab892 (patch)
tree5d8fdb41d3bec8bead6760855843d73e9afbc287 /load.c
parenta45f25ece30e4101ae77c90d2270d253ea9a82ec (diff)
downloadgunmake-51fb930ef2ec8c479fb113ae6b3d5549a0bab892.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 3e06982..0ed05f9 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."));