diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-19 22:20:14 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-19 22:20:14 +0000 |
commit | 1446d094292532062a83b8dc4587f9b62a6120df (patch) | |
tree | cf7078f9ddebb58cb7cd55dcd736f1f25c75ac7f /sys/posix4/mqueue.h | |
parent | c147e70b997febc0da8565eecf0dabede1ba5f88 (diff) | |
download | FreeBSD-src-1446d094292532062a83b8dc4587f9b62a6120df.zip FreeBSD-src-1446d094292532062a83b8dc4587f9b62a6120df.tar.gz |
Remove __P.
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 |