use syscall_arg_t and __scc macro for arguments to __alt_socketcall
[musl] / src / thread / pthread_mutex_init.c
index b83edd0..acf45a7 100644 (file)
@@ -4,6 +4,5 @@ int pthread_mutex_init(pthread_mutex_t *restrict m, const pthread_mutexattr_t *r
 {
        *m = (pthread_mutex_t){0};
        if (a) m->_m_type = a->__attr;
-       if (m->_m_type & 4) m->_m_type |= 128U;
        return 0;
 }