From 710f231a4799abe70388c760b6bc57d8f81a018a Mon Sep 17 00:00:00 2001 From: MechSlayer <0jcrespo1996@gmail.com> Date: Tue, 9 Sep 2025 03:57:53 +0200 Subject: [PATCH] feature: update fs.h to include stddef.h and clarify timestamp type documentation --- Source/DrangPlatform/Include/drang/fs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/DrangPlatform/Include/drang/fs.h b/Source/DrangPlatform/Include/drang/fs.h index b212903..89d2b2b 100644 --- a/Source/DrangPlatform/Include/drang/fs.h +++ b/Source/DrangPlatform/Include/drang/fs.h @@ -2,6 +2,7 @@ #include "platform.h" #include #include +#include DRANG_BEGIN_DECLS @@ -59,8 +60,7 @@ typedef uint32_t drang_fs_permissions_t; /** * @brief File system timestamp type. * - * Represents file timestamps as 64-bit values. The specific format - * and epoch may be platform-dependent. + * Represents 64-bits of time in seconds since the Unix epoch (1970-01-01 00:00:00 UTC). */ typedef uint64_t drang_fs_time_t;