Fix dos2unix compile problem with certain glibc versions
authorEric Andersen <andersen@codepoet.org>
Tue, 21 Aug 2001 22:34:05 +0000 (22:34 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 21 Aug 2001 22:34:05 +0000 (22:34 -0000)
coreutils/dos2unix.c
dos2unix.c

index 02b70d9..e110680 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 02b70d9..e110680 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