diff options
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 90c1004..bc01eed 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -33,7 +33,7 @@ #include <stdio.h> #include <fcntl.h> #include <errno.h> -#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1) +#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) #include <inttypes.h> #else typedef unsigned long long int uintmax_t; |