We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80981f6 commit 1a09f94Copy full SHA for 1a09f94
src/EmuFs.cc
@@ -10,6 +10,13 @@
10
#include <sstream>
11
#include <string>
12
13
+// muslc defines those, but we want a typedef instead
14
+#if defined(loff_t)
15
+typedef loff_t __musl_loff_t;
16
+#undef loff_t
17
+typedef __musl_loff_t loff_t;
18
+#endif
19
+
20
#include "AddressSpace.h"
21
#include "ReplaySession.h"
22
#include "core.h"
src/record_syscall.cc
@@ -102,6 +102,13 @@
102
#include "log.h"
103
#include "util.h"
104
105
106
107
108
109
110
111
112
using namespace std;
113
114
#ifndef HAVE_TERMIOS2
0 commit comments