From: kosmirror <kos...@us...> - 2025-09-05 19:36:04
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 0db67b99b154ec06dda311ce8a91615cd4654729 (commit) from a337be07e09bd884d224d39b0b4c7034ac681b97 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0db67b99b154ec06dda311ce8a91615cd4654729 Author: QuzarDC <qu...@co...> Date: Fri Sep 5 15:32:45 2025 -0400 sys/_types: Readd `_TIME_T_` define. Seems it is required and can throw complaints in some gcc versions/settings. ----------------------------------------------------------------------- Summary of changes: include/sys/_types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/sys/_types.h b/include/sys/_types.h index 0be7feae..3110877d 100644 --- a/include/sys/_types.h +++ b/include/sys/_types.h @@ -137,7 +137,8 @@ typedef unsigned long __mode_t; typedef unsigned short __nlink_t; typedef long __suseconds_t; /* microseconds (signed) */ typedef unsigned long __useconds_t; /* microseconds (unsigned) */ -typedef long long __time_t; +#define _TIME_T_ long long +typedef _TIME_T_ __time_t; #ifndef __clockid_t_defined #define _CLOCKID_T_ unsigned long hooks/post-receive -- A pseudo Operating System for the Dreamcast. |