diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-05-18 12:25:22 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-05-26 02:16:48 +0100 |
commit | a41172a5c4b23b34fba3d76c036afa0f2a7eeb28 (patch) | |
tree | 80aba85310d5bab4d028c78632d5bb00d48337b6 | |
parent | 4ce7488e8d96080f18b518bcf6a6356e0c392dda (diff) | |
download | coreutils-a41172a5c4b23b34fba3d76c036afa0f2a7eeb28.tar.xz |
maint: remove sys/types.h include order check
* src/system.h: This was inadvertently ineffective due to
a typo in commit v8.9-10-ge1aaf89 (Jan 2011), but has
not caused any issues, so remove.
-rw-r--r-- | src/system.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/system.h b/src/system.h index 8a9b47907..8f6a2ea84 100644 --- a/src/system.h +++ b/src/system.h @@ -18,16 +18,6 @@ #include <alloca.h> -/* Include <sys/types.h> before this file. - Note this doesn't warn if we're included - before all system headers. */ - -#if 2 < __GLIBC__ || ( 2 == ___GLIBC__ && 2 <= __GLIBC_MINOR__ ) -# if ! defined _SYS_TYPES_H -you must include <sys/types.h> before including this file -# endif -#endif - #include <sys/stat.h> /* Commonly used file permission combination. */ |