From 00995ca9efcd48dd26b810e787ddfe701c23eb41 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 30 Oct 1998 18:18:59 +0000 Subject: Update. 1998-10-30 18:11 Ulrich Drepper * iconv/gconv_conf.c (__gconv_read_conf): Don't define as internal_function since it is called through a pointer. * iconv/gconv_db.c (free_derivation): Likewise. * iconv/gconv_int.h: Adjust prototype od __gconv_read_conf. * posix/wordexp.c: Add internal_function to parse_backtick definition. * rt/aio_misc.c: Add internal_function to __aio_free_request, __aio_find_req, __aio_find_req_fd, and __aio_enqueue_request definitions. * rt/aio_notify.c: Add internal_function to __aio_notify_only and __aio_notify definitions. * wcsmbsload.c: Add internal_function to __wcsmbs_load_conv definition. --- iconv/gconv_conf.c | 1 - iconv/gconv_db.c | 1 - iconv/gconv_int.h | 3 +-- 3 files changed, 1 insertion(+), 4 deletions(-) (limited to 'iconv') diff --git a/iconv/gconv_conf.c b/iconv/gconv_conf.c index 4ab924a..1b0f5b8 100644 --- a/iconv/gconv_conf.c +++ b/iconv/gconv_conf.c @@ -381,7 +381,6 @@ read_conf_file (const char *filename, const char *directory, size_t dir_len, /* Read all configuration files found in the user-specified and the default path. */ void -internal_function __gconv_read_conf (void) { const char *user_path = __secure_getenv ("GCONV_PATH"); diff --git a/iconv/gconv_db.c b/iconv/gconv_db.c index 443e5bf..be2b7fa 100644 --- a/iconv/gconv_db.c +++ b/iconv/gconv_db.c @@ -147,7 +147,6 @@ add_derivation (const char *fromset, const char *toset, } static void -internal_function free_derivation (void *p) { struct known_derivation *deriv = (struct known_derivation *) p; diff --git a/iconv/gconv_int.h b/iconv/gconv_int.h index e4202f6..f023919 100644 --- a/iconv/gconv_int.h +++ b/iconv/gconv_int.h @@ -112,8 +112,7 @@ extern int __gconv_find_transform (const char *__toset, const char *__fromset, internal_function; /* Read all the configuration data and cache it. */ -extern void __gconv_read_conf (void) - internal_function; +extern void __gconv_read_conf (void); /* Comparison function to search alias. */ extern int __gconv_alias_compare (const void *__p1, const void *__p2); -- cgit v1.1