From 1b5b235bd9a2652fd5e0871dfb703aa70ef639e8 Mon Sep 17 00:00:00 2001 From: technotic Date: Sat, 8 Nov 2025 02:12:38 -0800 Subject: [PATCH] add include for crc32.h in sulog.h (for dedup_calc_hash) (#548) Co-authored-by: technotic Co-authored-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com> --- kernel/sulog.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/sulog.h b/kernel/sulog.h index 8b18af1c..9eeb66ef 100644 --- a/kernel/sulog.h +++ b/kernel/sulog.h @@ -3,6 +3,7 @@ #include #include +#include // needed for function dedup_calc_hash #ifdef KSU_MODULE #define __SULOG_GATE 0 @@ -76,4 +77,4 @@ int ksu_sulog_init(void); void ksu_sulog_exit(void); #endif // __SULOG_GATE -#endif /* __KSU_SULOG_H */ \ No newline at end of file +#endif /* __KSU_SULOG_H */