summaryrefslogtreecommitdiff
path: root/misc/syslog.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-31 15:56:45 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-31 15:59:06 +0200
commitab5bf7cf7628dda64701e47b149575f0f7c896bf (patch)
tree17d2a754a097ab9e6bf714ff06948522b40c4c3e /misc/syslog.c
parent75b3047eac76779f4e7902a9f47a6410bfdcc32f (diff)
misc: Remove internal_function function attribute
Diffstat (limited to 'misc/syslog.c')
-rw-r--r--misc/syslog.c3
1 files changed, 1 insertions, 2 deletions
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)