diff options
Diffstat (limited to 'include/mqueue.h')
| -rw-r--r-- | include/mqueue.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mqueue.h b/include/mqueue.h index 788d0a1aa5cfc..e1c0f27ddcbbd 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 |
