Fix dos2unix compile problem with certain glibc versions
This commit is contained in:
parent
f349e978c4
commit
c61804ed59
2 changed files with 4 additions and 4 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
|
||||
|
||||
|
|
|
@ -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…
Add table
Add a link
Reference in a new issue