diff options
Diffstat (limited to 'sys/posix4/semaphore.h')
-rw-r--r-- | sys/posix4/semaphore.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/posix4/semaphore.h b/sys/posix4/semaphore.h index 9741b06..b404a03 100644 --- a/sys/posix4/semaphore.h +++ b/sys/posix4/semaphore.h @@ -56,15 +56,15 @@ typedef struct sem *sem_t; #include <sys/cdefs.h> __BEGIN_DECLS -int sem_init __P((sem_t *, int, unsigned int)); -int sem_destroy __P((sem_t *)); -sem_t *sem_open __P((const char *, int, ...)); -int sem_close __P((sem_t *)); -int sem_unlink __P((const char *)); -int sem_wait __P((sem_t *)); -int sem_trywait __P((sem_t *)); -int sem_post __P((sem_t *)); -int sem_getvalue __P((sem_t *, int *)); +int sem_init(sem_t *, int, unsigned int); +int sem_destroy(sem_t *); +sem_t *sem_open(const char *, int, ...); +int sem_close(sem_t *); +int sem_unlink(const char *); +int sem_wait(sem_t *); +int sem_trywait(sem_t *); +int sem_post(sem_t *); +int sem_getvalue(sem_t *, int *); __END_DECLS #endif |