From ba56c81bd00192602fda7f18e43326c88958e270 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 59d2dafa..a87b102d 100644 --- a/kernel/sulog.h +++ b/kernel/sulog.h @@ -3,6 +3,7 @@ #include #include +#include // needed for function dedup_calc_hash #define __SULOG_GATE 1 @@ -72,4 +73,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 */