diff options
| -rw-r--r-- | include/internal/time64_helpers.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/include/internal/time64_helpers.h b/include/internal/time64_helpers.h index 2284aacd9..e2ed0f3bb 100644 --- a/include/internal/time64_helpers.h +++ b/include/internal/time64_helpers.h @@ -1,10 +1,15 @@  #ifndef _TIME64_HELPERS_H  #define _TIME64_HELPERS_H +#include <linux/version.h>  #include <bits/types.h>  #include <time.h>  #include <stddef.h> +#if defined(__UCLIBC_USE_TIME64__) && __TARGET_ARCH_BITS__ == 32 && LINUX_VERSION_CODE < KERNEL_VERSION(5,1,0) +#error 64bit time on 32bit targets is not supported on Linux < 5.1.0 +#endif +  struct __ts64_struct {     __S64_TYPE tv_sec;     __S64_TYPE tv_nsec;  | 
