diff options
Diffstat (limited to 'sys/posix4/mqueue.h')
-rw-r--r-- | sys/posix4/mqueue.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/posix4/mqueue.h b/sys/posix4/mqueue.h index c2fc38e..803c5b4 100644 --- a/sys/posix4/mqueue.h +++ b/sys/posix4/mqueue.h @@ -62,14 +62,14 @@ struct mq_attr { #include <sys/cdefs.h> __BEGIN_DECLS -mqd_t mq_open __P((const char *, int oflag, ...)); -int mq_close __P((mqd_t)); -int mq_unlink __P((const char *)); -int mq_send __P((mqd_t, const char *, size_t, unsigned int)); -ssize_t mq_receive __P((mqd_t, char *, size_t, unsigned int *)); -int mq_notify __P((mqd_t, const struct sigevent *)); -int mq_setattr __P((mqd_t, const struct mq_attr *, struct mq_attr *)); -int mq_getattr __P((mqd_t, struct mq_attr *)); +mqd_t mq_open(const char *, int oflag, ...); +int mq_close(mqd_t); +int mq_unlink(const char *); +int mq_send(mqd_t, const char *, size_t, unsigned int); +ssize_t mq_receive(mqd_t, char *, size_t, unsigned int *); +int mq_notify(mqd_t, const struct sigevent *); +int mq_setattr(mqd_t, const struct mq_attr *, struct mq_attr *); +int mq_getattr(mqd_t, struct mq_attr *); __END_DECLS #endif |