aboutsummaryrefslogtreecommitdiff
path: root/dos2unix.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-08-21 22:34:05 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-08-21 22:34:05 +0000
commit3d3e8dab1106daa997dae3b419a6a9c2b1bb67a8 (patch)
tree41d95c6055ac3859053553a1d8c6c87e86b6e6c4 /dos2unix.c
parent6e33165982a8ba691371185cb898643ec9e78ba6 (diff)
downloadbusybox-w32-3d3e8dab1106daa997dae3b419a6a9c2b1bb67a8.tar.gz
busybox-w32-3d3e8dab1106daa997dae3b419a6a9c2b1bb67a8.tar.bz2
busybox-w32-3d3e8dab1106daa997dae3b419a6a9c2b1bb67a8.zip
Fix dos2unix compile problem with certain glibc versions
git-svn-id: svn://busybox.net/trunk/busybox@3319 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'dos2unix.c')
-rw-r--r--dos2unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dos2unix.c b/dos2unix.c
index 02b70d915..e110680c3 100644
--- a/dos2unix.c
+++ b/dos2unix.c
@@ -34,8 +34,8 @@
34#include <sys/time.h> 34#include <sys/time.h>
35#include "busybox.h" 35#include "busybox.h"
36 36
37/* Teach libc5 what a uint64_t is */ 37/* Teach older glibc and libc5 what a uint64_t is */
38#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) 38#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 3)
39typedef unsigned long int uint64_t; 39typedef unsigned long int uint64_t;
40#endif 40#endif
41 41