From 3d3e8dab1106daa997dae3b419a6a9c2b1bb67a8 Mon Sep 17 00:00:00 2001 From: andersen Date: Tue, 21 Aug 2001 22:34:05 +0000 Subject: Fix dos2unix compile problem with certain glibc versions git-svn-id: svn://busybox.net/trunk/busybox@3319 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- dos2unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dos2unix.c') diff --git a/dos2unix.c b/dos2unix.c index 02b70d915..e110680c3 100644 --- a/dos2unix.c +++ b/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 -- cgit v1.2.3-55-g6feb