remove implicit include of sys/sysmacros.h from sys/types.h
authorRich Felker <dalias@aerifal.cx>
Fri, 21 Jun 2019 19:49:38 +0000 (15:49 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 21 Jun 2019 19:49:38 +0000 (15:49 -0400)
this reverts commit f552c792c7ce5a560f214e1104d93ee5b0833967, which
exposed the sysmacros.h macros (device major/minor calculations) for
BSD and GNU profiles to mimic an unintentional glibc behavior some
code depended on. glibc has deprecated and since removed them as the
resolution to bug #19239, so it makes no sense for us to keep this
behavior. affected code should all have been fixed by now, and if it's
not yet fixed it needs to be for use with modern glibc anyway.

include/sys/types.h

index 75e489c57345a8d161e73dba60fb6d2d7c1f42b7..0c35541da0754954b9aa13d90322458c92277a53 100644 (file)
@@ -69,7 +69,6 @@ typedef long long quad_t;
 typedef unsigned long long u_quad_t;
 #include <endian.h>
 #include <sys/select.h>
-#include <sys/sysmacros.h>
 #endif
 
 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)