aboutsummaryrefslogtreecommitdiff
path: root/include/mqueue.h
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2016-10-02 17:02:59 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2016-10-02 17:02:59 +0000
commitddce1c3ddbfb773c2ee1343721f4e5bbe07186d0 (patch)
treec2ba7e9b032c44fe1ae58dfa5a602ba4debb8890 /include/mqueue.h
parenta7d1d4161757d358a67d40a08f4c4b283db1f313 (diff)
downloadsrc-ddce1c3ddbfb773c2ee1343721f4e5bbe07186d0.tar.gz
src-ddce1c3ddbfb773c2ee1343721f4e5bbe07186d0.zip
Notes
Diffstat (limited to 'include/mqueue.h')
-rw-r--r--include/mqueue.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mqueue.h b/include/mqueue.h
index 788d0a1aa5cf..e1c0f27ddcbb 100644
--- a/include/mqueue.h
+++ b/include/mqueue.h
@@ -50,7 +50,9 @@ 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 *);
-int __mq_oshandle(mqd_t mqd);
+#if __BSD_VISIBLE
+int mq_getfd_np(mqd_t mqd);
+#endif /* __BSD_VISIBLE */
__END_DECLS
#endif