]> git.feebdaed.xyz Git - 0xmirror/radare2.git/commitdiff
Fifo io is not for everyone
authorpancake <pancake@nopcode.org>
Sat, 20 Dec 2025 07:02:56 +0000 (08:02 +0100)
committerpancake <pancake@nopcode.org>
Sat, 20 Dec 2025 07:02:56 +0000 (08:02 +0100)
libr/io/p/io_default.c

index c62272ddcc966cb7192f83319c83930a62584ba3..fe1cb67f11d4ebb6ef15df12a2cf2c9ca79f0e9a 100644 (file)
@@ -4,7 +4,11 @@
 #include <r_lib.h>
 #include "../io_memory.h"
 
+#if R2__UNIX__ && !__wasi__
 #define HAVE_FIFO 1
+#else
+#define HAVE_FIFO 0
+#endif
 
 // Forward declarations for FIFO delegation
 extern RIOPlugin r_io_plugin_malloc;