diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-30 18:18:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-30 18:18:59 +0000 |
commit | 00995ca9efcd48dd26b810e787ddfe701c23eb41 (patch) | |
tree | 33ed26b25e4fcc56df4a97a9e5cca11e6ca572bd | |
parent | e980ca92297b87f132315afe36cc530edb20c7e0 (diff) | |
download | glibc-00995ca9efcd48dd26b810e787ddfe701c23eb41.zip glibc-00995ca9efcd48dd26b810e787ddfe701c23eb41.tar.gz glibc-00995ca9efcd48dd26b810e787ddfe701c23eb41.tar.bz2 |
Update.
1998-10-30 18:11 Ulrich Drepper <drepper@cygnus.com>
* 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.
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | iconv/gconv_conf.c | 1 | ||||
-rw-r--r-- | iconv/gconv_db.c | 1 | ||||
-rw-r--r-- | iconv/gconv_int.h | 3 | ||||
-rw-r--r-- | posix/wordexp.c | 1 | ||||
-rw-r--r-- | rt/aio_misc.c | 4 | ||||
-rw-r--r-- | rt/aio_notify.c | 2 | ||||
-rw-r--r-- | wcsmbs/wcsmbsload.c | 1 |
8 files changed, 24 insertions, 4 deletions
@@ -1,3 +1,18 @@ +1998-10-30 18:11 Ulrich Drepper <drepper@cygnus.com> + + * 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. + 1998-10-30 Ulrich Drepper <drepper@cygnus.com> * Makerules (build-shlib): Add -O to generate optimized shared 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); diff --git a/posix/wordexp.c b/posix/wordexp.c index 4a37700..4a6dd7c 100644 --- a/posix/wordexp.c +++ b/posix/wordexp.c @@ -1867,6 +1867,7 @@ parse_dollars (char **word, size_t *word_length, size_t *max_length, } static int +internal_function parse_backtick (char **word, size_t *word_length, size_t *max_length, const char *words, size_t *offset, int flags, wordexp_t *pwordexp, const char *ifs, const char *ifs_white) diff --git a/rt/aio_misc.c b/rt/aio_misc.c index 1688a15..742a8ab 100644 --- a/rt/aio_misc.c +++ b/rt/aio_misc.c @@ -144,6 +144,7 @@ get_elem (void) void +internal_function __aio_free_request (struct requestlist *elem) { elem->running = no; @@ -153,6 +154,7 @@ __aio_free_request (struct requestlist *elem) struct requestlist * +internal_function __aio_find_req (aiocb_union *elem) { struct requestlist *runp = requests; @@ -175,6 +177,7 @@ __aio_find_req (aiocb_union *elem) struct requestlist * +internal_function __aio_find_req_fd (int fildes) { struct requestlist *runp = requests; @@ -216,6 +219,7 @@ weak_alias (__aio_init, aio_init) /* The main function of the async I/O handling. It enqueues requests and if necessary starts and handles threads. */ struct requestlist * +internal_function __aio_enqueue_request (aiocb_union *aiocbp, int operation) { int result = 0; diff --git a/rt/aio_notify.c b/rt/aio_notify.c index 716a304..8c57d72 100644 --- a/rt/aio_notify.c +++ b/rt/aio_notify.c @@ -24,6 +24,7 @@ #include "aio_misc.h" int +internal_function __aio_notify_only (struct sigevent *sigev) { int result = 0; @@ -58,6 +59,7 @@ __aio_notify_only (struct sigevent *sigev) void +internal_function __aio_notify (struct requestlist *req) { struct waitlist *waitlist; diff --git a/wcsmbs/wcsmbsload.c b/wcsmbs/wcsmbsload.c index f2699b6..a8412e3 100644 --- a/wcsmbs/wcsmbsload.c +++ b/wcsmbs/wcsmbsload.c @@ -137,6 +137,7 @@ getfct (const char *to, const char *from) /* Load conversion functions for the currently selected locale. */ void +internal_function __wcsmbs_load_conv (const struct locale_data *new_category) { /* We must modify global data. */ |