diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-03-23 14:06:25 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-03-23 14:06:25 +0000 |
commit | 957f6178783f7bbd50ac7cd392c347f530d5b06c (patch) | |
tree | 28e9cc484b1766e06ee20869f0c0f28036349052 /sys/posix4 | |
parent | 35ec516616d07a32427965f9b0fa417e36aa4aad (diff) | |
download | src-test2-957f6178783f7bbd50ac7cd392c347f530d5b06c.tar.gz src-test2-957f6178783f7bbd50ac7cd392c347f530d5b06c.zip |
Notes
Diffstat (limited to 'sys/posix4')
-rw-r--r-- | sys/posix4/semaphore.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/posix4/semaphore.h b/sys/posix4/semaphore.h index a24ac35180e5..02cde3ee7821 100644 --- a/sys/posix4/semaphore.h +++ b/sys/posix4/semaphore.h @@ -47,15 +47,15 @@ typedef int sem_t; #include <sys/cdefs.h> __BEGIN_DECLS -int sem_init __P(sem_t *, int, unsigned int)); +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((sem_t *)); -int sem_trywait((sem_t *)); -int sem_post((sem_t *)); -int sem_getvalue((sem_t *, int *)); +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 *)); __END_DECLS #endif /* KERNEL */ |