From f858bec12a7bea33c4869e6ca2e49b5c16035b03 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 11 Dec 2019 14:41:07 -0700 Subject: [PATCH] skip on Linux It's not available with musl, either, musl intentionally doesn't provide a preprocessor test, and we're avoiding (for now) `configure`-time tests in the style of autoconf. original commit: a9bfb72027fc83ed6bb690d033bc6fed0629dba7 --- c/expeditor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/expeditor.c b/c/expeditor.c index c16865bc1e..55ce40af5f 100644 --- a/c/expeditor.c +++ b/c/expeditor.c @@ -549,7 +549,7 @@ static void s_ee_write_char(wchar_t c) { #include #include #include -#if !defined(__GLIBC__) && !defined(__OpenBSD__) && !defined(__NetBSD__) +#if !defined(__GLIBC__) && !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__linux__) #include #endif