diff options
Diffstat (limited to 'system/lib/libc/musl/src/internal/stdio_impl.h')
-rw-r--r-- | system/lib/libc/musl/src/internal/stdio_impl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/internal/stdio_impl.h b/system/lib/libc/musl/src/internal/stdio_impl.h index 2083b2fe..6bcd44dc 100644 --- a/system/lib/libc/musl/src/internal/stdio_impl.h +++ b/system/lib/libc/musl/src/internal/stdio_impl.h @@ -7,9 +7,15 @@ #define UNGET 8 +#if 1 // XXX EMSCRIPTEN +#define FFINALLOCK(f) 0 +#define FLOCK(f) 0 +#define FUNLOCK(f) 0 +#else #define FFINALLOCK(f) ((f)->lock>=0 ? __lockfile((f)) : 0) #define FLOCK(f) int __need_unlock = ((f)->lock>=0 ? __lockfile((f)) : 0) #define FUNLOCK(f) if (__need_unlock) __unlockfile((f)); else +#endif #define F_PERM 1 #define F_NORD 4 |