Fix stable as well
authorEric Andersen <andersen@codepoet.org>
Tue, 21 Aug 2001 22:34:58 +0000 (22:34 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 21 Aug 2001 22:34:58 +0000 (22:34 -0000)
busybox/coreutils/dos2unix.c
busybox/dos2unix.c

index 02b70d9152ee7ae423e98318a4e121f44be54d80..e110680c387e5c9c839f21c5c5905c11ff652045 100644 (file)
@@ -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
 
index 02b70d9152ee7ae423e98318a4e121f44be54d80..e110680c387e5c9c839f21c5c5905c11ff652045 100644 (file)
@@ -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