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 1e95c1f3e843608ebd3f7045bd40e7be27d3a575 (commit)
from a3d0467bcb2659e44ce7cbeef6e900bb6f33cc62 (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 1e95c1f3e843608ebd3f7045bd40e7be27d3a575
Author: QuzarDC <qu...@co...>
Date: Sun Jun 22 20:59:33 2025 -0400
arch/args.h: Add standard double-include protection and decls
-----------------------------------------------------------------------
Summary of changes:
kernel/arch/dreamcast/include/arch/args.h | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/kernel/arch/dreamcast/include/arch/args.h b/kernel/arch/dreamcast/include/arch/args.h
index 56f3ffe8..74b719af 100644
--- a/kernel/arch/dreamcast/include/arch/args.h
+++ b/kernel/arch/dreamcast/include/arch/args.h
@@ -14,6 +14,12 @@
\author Paul Cercueil
*/
+#ifndef __ARCH_ARGS_H
+#define __ARCH_ARGS_H
+
+#include <kos/cdefs.h>
+__BEGIN_DECLS
+
#ifdef __SH4_SINGLE_ONLY__
#define KOS_SH4_SINGLE_ONLY 1
#else
@@ -46,3 +52,7 @@
* floating-point argument of a function (starting from n=0).
*/
#define KOS_FPARG(n) _KOS_FPARG(n, KOS_SH4_SINGLE_ONLY)
+
+__END_DECLS
+
+#endif /* __ARCH_ARGS_H */
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|