From: falcovorbis <fal...@us...> - 2023-08-20 22:49:40
|
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 8d040105fd922addf4c5853be4cafcf3c9bf093e (commit) via 6f2fe1e4b99f63ab3f878daf1031e7f7093e15e0 (commit) from c6ddbb13e8bb9d5feb8f992a992845c9500a4eea (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 8d040105fd922addf4c5853be4cafcf3c9bf093e Merge: c6ddbb1 6f2fe1e Author: Falco Girgis <gyr...@gm...> Date: Sun Aug 20 17:49:03 2023 -0500 Merge pull request #271 from KallistiOS/clock_gettime_fix Fixing opusfile build issues after clock_gettime() commit 6f2fe1e4b99f63ab3f878daf1031e7f7093e15e0 Author: Falco Girgis <gyr...@gm...> Date: Sun Aug 20 17:42:07 2023 -0500 Fixing opusfile build issues after clock_gettime() - Somehow Newlib's prototype is conflicting with the one we were providing... But if Newlib is providing the prototype, doesn't look like we need it anyway. ----------------------------------------------------------------------- Summary of changes: include/kos/time.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/kos/time.h b/include/kos/time.h index 738230c..1c5c79d 100644 --- a/include/kos/time.h +++ b/include/kos/time.h @@ -48,10 +48,6 @@ extern int timespec_get(struct timespec *ts, int base); #define CLOCK_PROCESS_CPUTIME_ID (CLOCK_REALTIME + 2) #define CLOCK_THREAD_CPUTIME_ID (CLOCK_REALTIME + 3) -extern int clock_getres(__clockid_t clk_id, struct timespec *res); -extern int clock_gettime(__clockid_t clk_id, struct timespec *tp); -extern int clock_settime(__clockid_t clk_id, const struct timespec *tp); - #endif /* !defined(__STRICT_ANSI__) || (_POSIX_C_SOURCE >= 199309L) */ __END_DECLS hooks/post-receive -- A pseudo Operating System for the Dreamcast. |