about summary refs log tree commit diff
path: root/nptl/pthread_attr_destroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/pthread_attr_destroy.c')
-rw-r--r--nptl/pthread_attr_destroy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthread_attr_destroy.c b/nptl/pthread_attr_destroy.c
index 088800cd8a..fec04163b1 100644
--- a/nptl/pthread_attr_destroy.c
+++ b/nptl/pthread_attr_destroy.c
@@ -25,7 +25,7 @@
 
 
 int
-pthread_attr_destroy (attr)
+__pthread_attr_destroy (attr)
      pthread_attr_t *attr;
 {
   /* Enqueue the attributes to the list of all known variables.  */
@@ -64,3 +64,4 @@ pthread_attr_destroy (attr)
 
   return 0;
 }
+strong_alias (__pthread_attr_destroy, pthread_attr_destroy)