diff options
author | Eric Andersen | 2001-08-21 22:34:05 +0000 |
---|---|---|
committer | Eric Andersen | 2001-08-21 22:34:05 +0000 |
commit | c61804ed592f22340b3698eec6b67216c010cae0 (patch) | |
tree | 41d95c6055ac3859053553a1d8c6c87e86b6e6c4 /dos2unix.c | |
parent | f349e978c43b5061bf9dd3d05b5a30e2da039f60 (diff) | |
download | busybox-c61804ed592f22340b3698eec6b67216c010cae0.zip busybox-c61804ed592f22340b3698eec6b67216c010cae0.tar.gz |
Fix dos2unix compile problem with certain glibc versions
Diffstat (limited to 'dos2unix.c')
-rw-r--r-- | dos2unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |