summaryrefslogtreecommitdiff
path: root/sysdeps/generic/pt-mutexattr-settype.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/pt-mutexattr-settype.c')
-rw-r--r--sysdeps/generic/pt-mutexattr-settype.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/generic/pt-mutexattr-settype.c b/sysdeps/generic/pt-mutexattr-settype.c
index 5c46010..7a7ce35 100644
--- a/sysdeps/generic/pt-mutexattr-settype.c
+++ b/sysdeps/generic/pt-mutexattr-settype.c
@@ -21,7 +21,7 @@
#include <pt-internal.h>
int
-pthread_mutexattr_settype (pthread_mutexattr_t *attr, int type)
+__pthread_mutexattr_settype (pthread_mutexattr_t *attr, int type)
{
switch (type)
{
@@ -35,3 +35,4 @@ pthread_mutexattr_settype (pthread_mutexattr_t *attr, int type)
return EINVAL;
}
}
+weak_alias (__pthread_mutexattr_settype, pthread_mutexattr_settype)