about summary refs log tree commit diff
path: root/inet/deadline.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-31 17:35:16 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-31 18:52:00 +0200
commit9da93bd7c64ed38e95fe307ed3d33a73e389d6b6 (patch)
treed18b30e58bbfbd1f9ec1e0353fcb9b72bc82569d /inet/deadline.c
parentc0c49d60cfeff3b2aa801d6598143a073989654a (diff)
downloadglibc-9da93bd7c64ed38e95fe307ed3d33a73e389d6b6.tar.gz
glibc-9da93bd7c64ed38e95fe307ed3d33a73e389d6b6.tar.xz
glibc-9da93bd7c64ed38e95fe307ed3d33a73e389d6b6.zip
inet: Remove internal_function attribute
Diffstat (limited to 'inet/deadline.c')
-rw-r--r--inet/deadline.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/inet/deadline.c b/inet/deadline.c
index c1fa415a39..5893f2206a 100644
--- a/inet/deadline.c
+++ b/inet/deadline.c
@@ -24,7 +24,7 @@
 #include <stdint.h>
 #include <time.h>
 
-struct deadline_current_time internal_function
+struct deadline_current_time
 __deadline_current_time (void)
 {
   struct deadline_current_time result;
@@ -48,7 +48,7 @@ infinite_deadline (void)
   return (struct deadline) { { -1, -1 } };
 }
 
-struct deadline internal_function
+struct deadline
 __deadline_from_timeval (struct deadline_current_time current,
                          struct timeval tv)
 {
@@ -79,7 +79,7 @@ __deadline_from_timeval (struct deadline_current_time current,
   return (struct deadline) { { sec, nsec } };
 }
 
-int internal_function
+int
 __deadline_to_ms (struct deadline_current_time current,
                   struct deadline deadline)
 {