Fix dos2unix compile problem with certain glibc versions

This commit is contained in:
Eric Andersen 2001-08-21 22:34:05 +00:00
parent f349e978c4
commit c61804ed59
2 changed files with 4 additions and 4 deletions

View 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

View 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