Skip to content

Commit 62e64e8

Browse files
committed
Include fcntl.h in core_mq.c
Some platforms (like openwrt) require this file to find macros like O_CREAT or O_RDWR Signed-off-by: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com>
1 parent fbce6c2 commit 62e64e8

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/shared/platform/posix/core_mq.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include "ocre_core_external.h"
99

1010
#include <errno.h>
11+
#include <fcntl.h>
1112
#include <stdio.h>
1213

1314
int core_mq_init(core_mq_t *mq, const char *name, size_t msg_size, uint32_t max_msgs)

0 commit comments

Comments
 (0)