diff options
Diffstat (limited to 'Userland/Libraries/LibC/pthread.h')
-rw-r--r-- | Userland/Libraries/LibC/pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/pthread.h b/Userland/Libraries/LibC/pthread.h index 2f7ff03c23..f5f76b6dfd 100644 --- a/Userland/Libraries/LibC/pthread.h +++ b/Userland/Libraries/LibC/pthread.h @@ -15,7 +15,7 @@ __BEGIN_DECLS -int pthread_create(pthread_t*, pthread_attr_t*, void* (*)(void*), void*); +int pthread_create(pthread_t*, pthread_attr_t const*, void* (*)(void*), void*); void pthread_exit(void*) __attribute__((noreturn)); int pthread_kill(pthread_t, int); void pthread_cleanup_push(void (*)(void*), void*); |