From 4f13a7050787aadb402c9c47aae0ff778dbc2c8b Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 12 Dec 2016 15:29:32 +0000 Subject: suppress glibc "use sysmacros.h for major" warning Signed-off-by: Denys Vlasenko --- diff --git a/include/libbb.h b/include/libbb.h index 2e9ea46..b1fec01 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -45,7 +45,7 @@ #include #include #include -#ifndef major +#if !defined(major) || defined(__GLIBC__) # include #endif #include -- cgit