summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPthread/semaphore.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibPthread/semaphore.h')
-rw-r--r--Userland/Libraries/LibPthread/semaphore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibPthread/semaphore.h b/Userland/Libraries/LibPthread/semaphore.h
index afcbe11283..d04c22943e 100644
--- a/Userland/Libraries/LibPthread/semaphore.h
+++ b/Userland/Libraries/LibPthread/semaphore.h
@@ -21,10 +21,10 @@ int sem_close(sem_t*);
int sem_destroy(sem_t*);
int sem_getvalue(sem_t*, int*);
int sem_init(sem_t*, int, unsigned int);
-sem_t* sem_open(const char*, int, ...);
+sem_t* sem_open(char const*, int, ...);
int sem_post(sem_t*);
int sem_trywait(sem_t*);
-int sem_unlink(const char*);
+int sem_unlink(char const*);
int sem_wait(sem_t*);
int sem_timedwait(sem_t*, const struct timespec* abstime);