summaryrefslogtreecommitdiff
path: root/iconv
diff options
context:
space:
mode:
Diffstat (limited to 'iconv')
-rw-r--r--iconv/gconv_builtin.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/iconv/gconv_builtin.c b/iconv/gconv_builtin.c
index 20fb8c676f..45bd4e7e00 100644
--- a/iconv/gconv_builtin.c
+++ b/iconv/gconv_builtin.c
@@ -1,5 +1,5 @@
/* Table for builtin transformation mapping.
- Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -31,8 +31,6 @@ static struct builtin_map
{
const char *name;
__gconv_fct fct;
- __gconv_init_fct init;
- __gconv_end_fct end;
int min_needed_from;
int max_needed_from;
@@ -41,13 +39,11 @@ static struct builtin_map
} map[] =
{
-#define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, Init, End, MinF, \
- MaxF, MinT, MaxT) \
+#define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, MinF, MaxF, \
+ MinT, MaxT) \
{ \
.name = Name, \
.fct = Fct, \
- .init = Init, \
- .end = End, \
\
.min_needed_from = MinF, \
.max_needed_from = MaxF, \
@@ -73,8 +69,8 @@ __gconv_get_builtin_trans (const char *name, struct __gconv_step *step)
assert (cnt < sizeof (map) / sizeof (map[0]));
step->__fct = map[cnt].fct;
- step->__init_fct = map[cnt].init;
- step->__end_fct = map[cnt].end;
+ step->__init_fct = NULL;
+ step->__end_fct = NULL;
step->__shlib_handle = NULL;
step->__modname = NULL;