From cfafda4169f08447a3163e9aa4997121c562c13d Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 2 Jul 2009 21:45:30 +0100 Subject: tools: Always check for __linux__ not __Linux__ Signed-off-by: Keir Fraser --- tools/console/daemon/io.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tools/console') diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c index 67fb22c612..5a6ccbfd43 100644 --- a/tools/console/daemon/io.c +++ b/tools/console/daemon/io.c @@ -39,10 +39,9 @@ #include #if defined(__NetBSD__) || defined(__OpenBSD__) #include -#elif defined(__linux__) || defined(__Linux__) +#elif defined(__linux__) #include -#endif -#if defined(__sun__) +#elif defined(__sun__) #include #endif -- cgit v1.2.3