summaryrefslogtreecommitdiff
path: root/sys/sem.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sem.h')
-rw-r--r--sys/sem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sem.h b/sys/sem.h
index d32215a..856ddb2 100644
--- a/sys/sem.h
+++ b/sys/sem.h
@@ -141,7 +141,7 @@ struct semid_ds {
/* ./src/sys/sem/semctl.c */
int semctl(int __semid, int __semnum, int __cmd, ...);
/* ./src/sys/sem/semget.c */
-int semget(__key_t, int __nsems, int __semflg);
+int semget(key_t __key, int __nsems, int __semflg);
/* ./src/sys/sem/semop.c */
int semop(int __semid, struct sembuf *__sops, size_t __nsops);
#endif