mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:57:45 +00:00
Kernel+LibC+Userland: Switch to 64-bit time_t
Let's not have that 2038 problem people are talking about. :^)
This commit is contained in:
parent
6906edee9a
commit
23ffd6c319
5 changed files with 5 additions and 5 deletions
|
@ -294,7 +294,7 @@ struct sigaction {
|
|||
#define OFF_T_MAX 2147483647
|
||||
|
||||
typedef i32 off_t;
|
||||
typedef u32 time_t;
|
||||
typedef i64 time_t;
|
||||
|
||||
struct utimbuf {
|
||||
time_t actime;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue