diff options
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/skeleton.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/iconv/skeleton.c b/iconv/skeleton.c index 19e737ac3e..90203213ef 100644 --- a/iconv/skeleton.c +++ b/iconv/skeleton.c @@ -77,6 +77,7 @@ */ #include <assert.h> +#include <dlfcn.h> #include <gconv.h> #include <string.h> #define __need_size_t @@ -219,8 +220,8 @@ FUNCTION_NAME (struct gconv_step *step, struct gconv_step_data *data, if (status == GCONV_OK) #endif /* Give the modules below the same chance. */ - status = _CALL_DL_FCT (fct, (next_step, next_data, NULL, NULL, - written, 1)); + status = DL_CALL_FCT (fct, (next_step, next_data, NULL, NULL, + written, 1)); } } else @@ -286,8 +287,8 @@ FUNCTION_NAME (struct gconv_step *step, struct gconv_step_data *data, const char *outerr = data->outbuf; int result; - result = _CALL_DL_FCT (fct, (next_step, next_data, &outerr, - outbuf, written, 0)); + result = DL_CALL_FCT (fct, (next_step, next_data, &outerr, + outbuf, written, 0)); if (result != GCONV_EMPTY_INPUT) { |