diff options
author | bde <bde@FreeBSD.org> | 1998-03-23 14:06:25 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-03-23 14:06:25 +0000 |
commit | f7e2d97d0be451d360d2a2f0af389b5d98caf1f3 (patch) | |
tree | 52109f2139de7fb16a671bbc532d2fa156aa5a52 /sys/posix4 | |
parent | 20ff8571188840f8bf0e8d60a6c83ab2339e4ba8 (diff) | |
download | FreeBSD-src-f7e2d97d0be451d360d2a2f0af389b5d98caf1f3.zip FreeBSD-src-f7e2d97d0be451d360d2a2f0af389b5d98caf1f3.tar.gz |
Fixed syntax errors.
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 a24ac35..02cde3e 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 */ |