diff options
author | Marvin Borner | 2021-05-18 19:36:22 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-18 19:36:22 +0200 |
commit | c905cd632cc7c5fa8e61eae7c00ed8e14743ced9 (patch) | |
tree | 4e9c2da2149c0380778879b012e0fd7a31df7279 /libs/libc/inc/crypto.h | |
parent | 4c8db3778a23b4a6c636403f9da55557d1206048 (diff) |
Inlining is weird
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 a67bb97..b672c50 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 -INLINE u32 crc32_user(u32 crc, const void *buf, u32 size) NONNULL; +u32 crc32_user(u32 crc, const void *buf, u32 size) NONNULL; #endif #endif |