From cdf029471736f43776452930b7195a06ab143654 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 17 Apr 2021 22:59:57 +0200 Subject: Added I/O bus implementation for efficient IPC This was a nice coding session. See ya tomorrow! --- libs/libc/inc/crypto.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libs/libc/inc/crypto.h') diff --git a/libs/libc/inc/crypto.h b/libs/libc/inc/crypto.h index 16cdf86..b672c50 100644 --- a/libs/libc/inc/crypto.h +++ b/libs/libc/inc/crypto.h @@ -8,4 +8,8 @@ void md5(const void *initial_msg, u32 initial_len, u8 digest[16]) NONNULL; u32 crc32(u32 crc, const void *buf, u32 size) NONNULL; +#ifdef KERNEL +u32 crc32_user(u32 crc, const void *buf, u32 size) NONNULL; +#endif + #endif -- cgit v1.2.3