From: ljsebald <ljs...@us...> - 2023-03-30 19:10:41
|
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 35364a74b969f71c422a98f214fbf3599a4a914f (commit) from 8982377032426e3a5820d94cd580cf14f85001c5 (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 35364a74b969f71c422a98f214fbf3599a4a914f Author: Lawrence Sebald <ljs...@us...> Date: Thu Mar 30 15:10:06 2023 -0400 Move <kos/time.h> include to ensure it always can be accessed from <time.h> ----------------------------------------------------------------------- Summary of changes: include/sys/_types.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/sys/_types.h b/include/sys/_types.h index 547f828..664907a 100644 --- a/include/sys/_types.h +++ b/include/sys/_types.h @@ -203,11 +203,6 @@ typedef _CLOCK_T_ __clock_t; /* Include stuff to make pthreads work as well. */ #include <sys/_pthread.h> -/* Grab our C11 time stuff if we got here from <time.h>. */ -#ifdef _TIME_H_ -#include <kos/time.h> -#endif - #ifndef __RESTRICT #if (__STDC_VERSION__ >= 199901L) #define __RESTRICT restrict @@ -227,3 +222,8 @@ typedef char * __va_list; __END_DECLS #endif /* _SYS__TYPES_H */ + +/* Grab our C11 time stuff if we got here from <time.h>. */ +#ifdef _TIME_H_ +#include <kos/time.h> +#endif hooks/post-receive -- A pseudo Operating System for the Dreamcast. |