We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbcaad6 commit 7483d1aCopy full SHA for 7483d1a
1 file changed
src/ocre/include/ocre/container.h
@@ -9,6 +9,20 @@
9
#define OCRE_CONTAINER_H
10
11
#include <stdbool.h>
12
+#include <unistd.h>
13
+
14
+/* Hack until Zephyr define those */
15
+#ifndef STDIN_FILENO
16
+#define STDIN_FILENO 0
17
+#endif
18
19
+#ifndef STDOUT_FILENO
20
+#define STDOUT_FILENO 1
21
22
23
+#ifndef STDERR_FILENO
24
+#define STDERR_FILENO 2
25
26
27
/**
28
* @brief The possible status of a container
0 commit comments