From 01f300ff91346ebbc8204db04e59a0ff38a30df6 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 5 Jul 2019 21:33:01 +0300 Subject: Use __linux__ macro instead of __linux --- libbutl/process.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbutl/process.cxx b/libbutl/process.cxx index 8e401ff..3b18355 100644 --- a/libbutl/process.cxx +++ b/libbutl/process.cxx @@ -31,7 +31,7 @@ // bugs 378 and 10354). Also note that, at the time of this writing, glibc // always uses fork() for systems other than Linux. // -# if defined(__linux) && \ +# if defined(__linux__) && \ defined(__GLIBC__) && \ defined(__GLIBC_MINOR__) && \ (__GLIBC__ > 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ >= 24) -- cgit v1.1