commit | fb9ef69cc725003180d06e6f160cac95e9aa3694 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Sat Jul 15 09:16:59 2023 +0200 |
committer | Tom Rini <trini@konsulko.com> | Tue Jul 25 12:44:46 2023 -0400 |
tree | b7e3570bc31891a063b3a9f5cbf87400a749eafc | |
parent | e9b59bff0f49689b07df31ac2b19bfe50915924b [diff] |
common: define time_t as 64bit To avoid the year 2038 problem time_t must be 64bit on all architectures. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
diff --git a/include/linux/types.h b/include/linux/types.h index baa2c49..9df930a 100644 --- a/include/linux/types.h +++ b/include/linux/types.h
@@ -65,7 +65,7 @@ #ifndef _TIME_T #define _TIME_T -typedef __kernel_time_t time_t; +typedef long long time_t; #endif #ifndef _CLOCK_T