summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/pthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibC/pthread.h')
-rw-r--r--Userland/Libraries/LibC/pthread.h2
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*);