diff options
Diffstat (limited to 'libs/libc/inc/crypto.h')
-rw-r--r-- | libs/libc/inc/crypto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libc/inc/crypto.h b/libs/libc/inc/crypto.h index bbe8d7e..16cdf86 100644 --- a/libs/libc/inc/crypto.h +++ b/libs/libc/inc/crypto.h @@ -5,7 +5,7 @@ #include <def.h> -void md5(const void *initial_msg, u32 initial_len, u8 digest[16]); -u32 crc32(u32 crc, const void *buf, u32 size); +void md5(const void *initial_msg, u32 initial_len, u8 digest[16]) NONNULL; +u32 crc32(u32 crc, const void *buf, u32 size) NONNULL; #endif |