]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
misc: Remove internal_function function attribute
authorFlorian Weimer <fweimer@redhat.com>
Thu, 31 Aug 2017 13:56:45 +0000 (15:56 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 31 Aug 2017 13:59:06 +0000 (15:59 +0200)
ChangeLog
misc/getttyent.c
misc/syslog.c
misc/tsearch.c

index d508605dfd37a30124ba15f49361ffb2b7e244bb..18d91c9096e3325cdbce052aff529d2a757dd5df 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-08-31  Florian Weimer  <fweimer@redhat.com>
+
+       * misc/getttyent.c (skip, value): Remove internal_function.
+       * misc/syslog.c (openlog_internal): Likewise.
+       * misc/tsearch.c (trecurse, tdestroy_recurse): Likewise.
+
 2017-08-31  Florian Weimer  <fweimer@redhat.com>
 
        * include/nss.h (__nss_valid_field, __nss_valid_list_field)
index 73002f52d10dc30af95d3163bc5f7a1992fe9dce..0fa4ddbddef147cc8f2d8b3fdb8f3755af6daf46 100644 (file)
@@ -57,8 +57,8 @@ __getttynam (const char *tty)
 }
 weak_alias (__getttynam, getttynam)
 
-static char *skip (char *) __THROW internal_function;
-static char *value (char *) __THROW internal_function;
+static char *skip (char *) __THROW;
+static char *value (char *) __THROW;
 
 struct ttyent *
 __getttyent (void)
@@ -141,7 +141,6 @@ weak_alias (__getttyent, getttyent)
  * the next field.
  */
 static char *
-internal_function
 skip (char *p)
 {
        char *t;
@@ -175,7 +174,6 @@ skip (char *p)
 }
 
 static char *
-internal_function
 value (char *p)
 {
 
index 6922ad685ca8881cc81d5fa17a0aaf4612aab364..2b6bd373bc0c8a60844d3364095436ccf20cee88 100644 (file)
@@ -72,7 +72,7 @@ extern char   *__progname;            /* Program name, from crt0. */
 /* Define the lock.  */
 __libc_lock_define_initialized (static, syslog_lock)
 
-static void openlog_internal(const char *, int, int) internal_function;
+static void openlog_internal(const char *, int, int);
 static void closelog_internal(void);
 #ifndef NO_SIGPIPE
 static void sigpipe_handler (int);
@@ -330,7 +330,6 @@ static struct sockaddr_un SyslogAddr;       /* AF_UNIX address of local logger */
 
 
 static void
-internal_function
 openlog_internal(const char *ident, int logstat, int logfac)
 {
        if (ident != NULL)
index 5e2e7986d330a10424d2e132ce08a3c7021f027a..aef9c7c1eebe4ccd9689050f762cc58ae231b949 100644 (file)
@@ -684,7 +684,6 @@ weak_alias (__tdelete, tdelete)
    ROOT is the root of the tree to be walked, ACTION the function to be
    called at each node.  LEVEL is the level of ROOT in the whole tree.  */
 static void
-internal_function
 trecurse (const void *vroot, __action_fn_t action, int level)
 {
   const_node root = (const_node) vroot;
@@ -725,7 +724,6 @@ weak_alias (__twalk, twalk)
 /* The standardized functions miss an important functionality: the
    tree cannot be removed easily.  We provide a function to do this.  */
 static void
-internal_function
 tdestroy_recurse (node root, __free_fn_t freefct)
 {
   if (LEFT(root) != NULL)