diff options
Diffstat (limited to 'libc/include/pthread.h')
-rw-r--r-- | libc/include/pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/pthread.h b/libc/include/pthread.h index 5c9b626..29caafc 100644 --- a/libc/include/pthread.h +++ b/libc/include/pthread.h @@ -226,7 +226,7 @@ int pthread_rwlock_trywrlock(pthread_rwlock_t*) __nonnull((1)); int pthread_rwlock_unlock(pthread_rwlock_t *rwlock) __nonnull((1)); int pthread_rwlock_wrlock(pthread_rwlock_t*) __nonnull((1)); -pthread_t pthread_self(void); +pthread_t pthread_self(void) __pure2; int pthread_setname_np(pthread_t, const char*) __nonnull((2)); |