diff options
Diffstat (limited to 'coreutils/dos2unix.c')
-rw-r--r-- | coreutils/dos2unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c index 02b70d9..e110680 100644 --- a/coreutils/dos2unix.c +++ b/coreutils/dos2unix.c @@ -34,8 +34,8 @@ #include <sys/time.h> #include "busybox.h" -/* Teach libc5 what a uint64_t is */ -#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) +/* Teach older glibc and libc5 what a uint64_t is */ +#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 3) typedef unsigned long int uint64_t; #endif |