From 82c22aa311d873e284ad4abb1c20ba04064ee3dd Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 21 Aug 2001 22:34:58 +0000 Subject: [PATCH] Fix stable as well --- busybox/coreutils/dos2unix.c | 4 ++-- busybox/dos2unix.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/busybox/coreutils/dos2unix.c b/busybox/coreutils/dos2unix.c index 02b70d915..e110680c3 100644 --- a/busybox/coreutils/dos2unix.c +++ b/busybox/coreutils/dos2unix.c @@ -34,8 +34,8 @@ #include #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 diff --git a/busybox/dos2unix.c b/busybox/dos2unix.c index 02b70d915..e110680c3 100644 --- a/busybox/dos2unix.c +++ b/busybox/dos2unix.c @@ -34,8 +34,8 @@ #include #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 -- 2.25.1