Fix dos2unix compile problem with certain glibc versions
This commit is contained in:
parent
f349e978c4
commit
c61804ed59
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user