summaryrefslogtreecommitdiff
path: root/function.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2016-05-01 19:24:20 -0400
committerPaul Smith <psmith@gnu.org>2016-05-21 16:22:32 -0400
commitc73ed7dd1cda65463e9ed8b99bcd4a7d9195d7fa (patch)
tree391eec685e146acf94af83ea30c388cd14216b0e /function.c
parentba8383efd8b1fded117f2587c78c40b28fe4e016 (diff)
Separate the GNU make load ABI from internal types.
Create an internal type "floc" and convert all users to that type. * gnumake.h (gmk_floc): Remove the offset field from this type. * loadapi.c (gmk_eval): Convert gmk_floc to internal floc.
Diffstat (limited to 'function.c')
-rw-r--r--function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/function.c b/function.c
index c9fcec2c..b7f0e56b 100644
--- a/function.c
+++ b/function.c
@@ -2634,7 +2634,7 @@ func_call (char *o, char **argv, const char *funcname UNUSED)
}
void
-define_new_function (const gmk_floc *flocp, const char *name,
+define_new_function (const floc *flocp, const char *name,
unsigned int min, unsigned int max, unsigned int flags,
gmk_func_ptr func)
{