From ab5bf7cf7628dda64701e47b149575f0f7c896bf Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 31 Aug 2017 15:56:45 +0200 Subject: misc: Remove internal_function function attribute --- misc/getttyent.c | 6 ++---- misc/syslog.c | 3 +-- misc/tsearch.c | 2 -- 3 files changed, 3 insertions(+), 8 deletions(-) (limited to 'misc') diff --git a/misc/getttyent.c b/misc/getttyent.c index 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.c index 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.c index 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) -- cgit 1.4.1