From: falcovorbis <fal...@us...> - 2024-05-28 16:25:05
|
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 788aafa96191e5a1008a05a563ee58370fc484c9 (commit) from 241724aaf43c5962ff16f214985872895bbdf757 (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 788aafa96191e5a1008a05a563ee58370fc484c9 Author: Donald Haase <qu...@ya...> Date: Tue May 28 12:24:32 2024 -0400 Add missing __END_DECLS (#596) Co-authored-by: QuzarDC <qu...@co...> ----------------------------------------------------------------------- Summary of changes: addons/libkosext2fs/inode.h | 2 ++ addons/libkosfat/bpb.h | 2 ++ addons/libkosfat/directory.h | 2 ++ addons/libkosfat/ucs.h | 2 ++ include/kos/oneshot_timer.h | 2 ++ kernel/arch/dreamcast/include/dc/math.h | 2 ++ 6 files changed, 12 insertions(+) diff --git a/addons/libkosext2fs/inode.h b/addons/libkosext2fs/inode.h index 24d43419..35a4be09 100644 --- a/addons/libkosext2fs/inode.h +++ b/addons/libkosext2fs/inode.h @@ -162,4 +162,6 @@ uint8_t *ext2_inode_read_block(ext2_fs_t *fs, const ext2_inode_t *inode, int ext2_resolve_symlink(ext2_fs_t *fs, ext2_inode_t *inode, char *rv, size_t *rv_len); +__END_DECLS + #endif /* !__EXT2_INODE_H */ diff --git a/addons/libkosfat/bpb.h b/addons/libkosfat/bpb.h index 8f89c2d7..bc57f9b7 100644 --- a/addons/libkosfat/bpb.h +++ b/addons/libkosfat/bpb.h @@ -112,4 +112,6 @@ int fat_write_fsinfo(fat_fs_t *fs); void fat_print_superblock(const fat_superblock_t *sb); #endif +__END_DECLS + #endif /* !__FAT_BPB_H */ diff --git a/addons/libkosfat/directory.h b/addons/libkosfat/directory.h index f04be5f6..b938ef40 100644 --- a/addons/libkosfat/directory.h +++ b/addons/libkosfat/directory.h @@ -81,4 +81,6 @@ void fat_update_mtime(fat_dentry_t *ent); void fat_dentry_print(const fat_dentry_t *ent); #endif +__END_DECLS + #endif /* !__FAT_DIRECTORY_H */ diff --git a/addons/libkosfat/ucs.h b/addons/libkosfat/ucs.h index 8a8cf283..1b73a42c 100644 --- a/addons/libkosfat/ucs.h +++ b/addons/libkosfat/ucs.h @@ -20,4 +20,6 @@ int fat_ucs2_to_utf8(uint8_t *out, const uint16_t *in, size_t olen, size_t fat_strlen_ucs2(const uint16_t *in); void fat_ucs2_tolower(uint16_t *in, size_t len); +__END_DECLS + #endif /* !__FAT_UCS_H */ diff --git a/include/kos/oneshot_timer.h b/include/kos/oneshot_timer.h index 2d060a64..40c27048 100644 --- a/include/kos/oneshot_timer.h +++ b/include/kos/oneshot_timer.h @@ -121,4 +121,6 @@ static inline void oneshot_timer_reset(oneshot_timer_t *timer) { oneshot_timer_start(timer); } +__END_DECLS + #endif /* __KOS_ONESHOT_TIMER_H */ diff --git a/kernel/arch/dreamcast/include/dc/math.h b/kernel/arch/dreamcast/include/dc/math.h index 7fb238ad..245a6ff0 100644 --- a/kernel/arch/dreamcast/include/dc/math.h +++ b/kernel/arch/dreamcast/include/dc/math.h @@ -35,4 +35,6 @@ unsigned int bit_reverse(unsigned int value); /** @} */ +__END_DECLS + #endif /* __DC_MATH_H */ hooks/post-receive -- A pseudo Operating System for the Dreamcast. |