diff options
author | Marvin Borner | 2021-05-18 18:37:19 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-18 18:37:50 +0200 |
commit | 4b4bfec8a312132acc84b5166998d0cfa7c01931 (patch) | |
tree | eeb494cf539b4bfdb6dae23a34f5f1c5d7167667 /libs/libc/inc/crypto.h | |
parent | eb13f2a8f536fecf918699bc19b3087a78a417d6 (diff) |
Improved entire building chain (especially debugging)
Diffstat (limited to 'libs/libc/inc/crypto.h')
-rw-r--r-- | libs/libc/inc/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/inc/crypto.h b/libs/libc/inc/crypto.h index b672c50..a67bb97 100644 --- a/libs/libc/inc/crypto.h +++ b/libs/libc/inc/crypto.h @@ -9,7 +9,7 @@ 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; +INLINE u32 crc32_user(u32 crc, const void *buf, u32 size) NONNULL; #endif #endif |