]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(struct builtin_map): Remove init and end elements. (BUILTIN_TRANSFORMATION): Remove...
authorUlrich Drepper <drepper@redhat.com>
Sun, 22 Jul 2001 17:29:40 +0000 (17:29 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 22 Jul 2001 17:29:40 +0000 (17:29 +0000)
iconv/gconv_builtin.c

index 20fb8c676fe6f7db970ff6d8bc37301d417b65c6..45bd4e7e00fa2258dda1e248df45ce72551e1235 100644 (file)
@@ -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;