about summary refs log tree commit diff
path: root/misc/getttyent.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/getttyent.c
parent75b3047eac76779f4e7902a9f47a6410bfdcc32f (diff)
downloadglibc-ab5bf7cf7628dda64701e47b149575f0f7c896bf.tar.gz
glibc-ab5bf7cf7628dda64701e47b149575f0f7c896bf.tar.xz
glibc-ab5bf7cf7628dda64701e47b149575f0f7c896bf.zip
misc: Remove internal_function function attribute
Diffstat (limited to 'misc/getttyent.c')
-rw-r--r--misc/getttyent.c6
1 files changed, 2 insertions, 4 deletions
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)
 {