Movatterモバイル変換
[0]ホーム
This is the mail archive of thelibc-alpha@sourceware.orgmailing list for theglibc project.
[PATCH] misc: Remove internal_function function attribute
- From: fweimer at redhat dot com (Florian Weimer)
- To: libc-alpha at sourceware dot org
- Date: Wed, 16 Aug 2017 18:28:21 +0200
- Subject: [PATCH] misc: Remove internal_function function attribute
- Authentication-results: sourceware.org; auth=none
- Authentication-results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com
- Authentication-results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=fweimer at redhat dot com
- Dmarc-filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5521EC05A1A7
2017-08-16 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.diff --git a/misc/getttyent.c b/misc/getttyent.cindex 73002f52d1..0fa4ddbdde 100644--- a/misc/getttyent.c+++ b/misc/getttyent.c@@ -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) { diff --git a/misc/syslog.c b/misc/syslog.cindex 6922ad685c..2b6bd373bc 100644--- a/misc/syslog.c+++ b/misc/syslog.c@@ -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)diff --git a/misc/tsearch.c b/misc/tsearch.cindex 5e2e7986d3..aef9c7c1ee 100644--- a/misc/tsearch.c+++ b/misc/tsearch.c@@ -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)
[8]ページ先頭