about summary refs log tree commit diff
path: root/inet/net-internal.h
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/net-internal.h
parentc0c49d60cfeff3b2aa801d6598143a073989654a (diff)
downloadglibc-9da93bd7c64ed38e95fe307ed3d33a73e389d6b6.tar.gz
glibc-9da93bd7c64ed38e95fe307ed3d33a73e389d6b6.tar.xz
glibc-9da93bd7c64ed38e95fe307ed3d33a73e389d6b6.zip
inet: Remove internal_function attribute
Diffstat (limited to 'inet/net-internal.h')
-rw-r--r--inet/net-internal.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/inet/net-internal.h b/inet/net-internal.h
index b2135893e8..74ee8bccd9 100644
--- a/inet/net-internal.h
+++ b/inet/net-internal.h
@@ -53,8 +53,7 @@ struct deadline_current_time
 
 /* Return the current time.  Terminates the process if the current
    time is not available.  */
-struct deadline_current_time __deadline_current_time (void)
-  internal_function attribute_hidden;
+struct deadline_current_time __deadline_current_time (void) attribute_hidden;
 
 /* Computed absolute deadline.  */
 struct deadline
@@ -97,15 +96,14 @@ __deadline_first (struct deadline left, struct deadline right)
 /* Add TV to the current time and return it.  Returns a special
    infinite absolute deadline on overflow.  */
 struct deadline __deadline_from_timeval (struct deadline_current_time,
-                                         struct timeval tv)
-  internal_function attribute_hidden;
+                                         struct timeval tv) attribute_hidden;
 
 /* Compute the number of milliseconds until the specified deadline,
    from the current time in the argument.  The result is mainly for
    use with poll.  If the deadline has already passed, return 0.  If
    the result would overflow an int, return INT_MAX.  */
 int __deadline_to_ms (struct deadline_current_time, struct deadline)
-  internal_function attribute_hidden;
+  attribute_hidden;
 
 /* Return true if TV.tv_sec is non-negative and TV.tv_usec is in the
    interval [0, 999999].  */