diff options
author | davidxu <davidxu@FreeBSD.org> | 2005-11-30 07:26:36 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2005-11-30 07:26:36 +0000 |
commit | a016ed505ca0d48d2b90c0dfd2e561d317c4919b (patch) | |
tree | 508590e119b532bcc8a11bfea524cb9e71c1bd58 /include | |
parent | 6142ede46fe62dfc695679f3ca3adb48bfc415b2 (diff) | |
download | FreeBSD-src-a016ed505ca0d48d2b90c0dfd2e561d317c4919b.zip FreeBSD-src-a016ed505ca0d48d2b90c0dfd2e561d317c4919b.tar.gz |
Fix compiling for c++, include cdefs.h.
Diffstat (limited to 'include')
-rw-r--r-- | include/mqueue.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mqueue.h b/include/mqueue.h index ac32b80..2c97451 100644 --- a/include/mqueue.h +++ b/include/mqueue.h @@ -29,12 +29,14 @@ #ifndef _MQUEUE_H_ #define _MQUEUE_H_ +#include <sys/cdefs.h> #include <sys/types.h> #include <sys/mqueue.h> struct sigevent; struct timespec; +__BEGIN_DECLS int mq_close(mqd_t); int mq_getattr(mqd_t, struct mq_attr *); int mq_notify(mqd_t, const struct sigevent *); @@ -48,4 +50,5 @@ ssize_t mq_timedreceive(mqd_t, char *__restrict, size_t, int mq_timedsend(mqd_t, const char *, size_t, unsigned, const struct timespec *); int mq_unlink(const char *); +__END_DECLS #endif |