diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2024-02-04 22:35:02 +0100 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2024-02-04 22:35:02 +0100 |
commit | de33d4594ea8b0e933c82c7f9108a43945870f97 (patch) | |
tree | 512190f8a3154f184af96abb019e29a70ba1ef4a | |
parent | 2f892f4c6bf56e585a624b12b77b992eabbd52e2 (diff) | |
download | libmicrohttpd-de33d4594ea8b0e933c82c7f9108a43945870f97.tar.gz libmicrohttpd-de33d4594ea8b0e933c82c7f9108a43945870f97.zip |
md5_ext.c: fixed missing include
-rw-r--r-- | src/microhttpd/md5_ext.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/microhttpd/md5_ext.c b/src/microhttpd/md5_ext.c index 8ab69c17..5b33becd 100644 --- a/src/microhttpd/md5_ext.c +++ b/src/microhttpd/md5_ext.c | |||
@@ -22,6 +22,8 @@ | |||
22 | * @brief Wrapper for MD5 calculation performed by TLS library | 22 | * @brief Wrapper for MD5 calculation performed by TLS library |
23 | * @author Karlson2k (Evgeny Grin) | 23 | * @author Karlson2k (Evgeny Grin) |
24 | */ | 24 | */ |
25 | |||
26 | #include <gnutls/crypto.h> | ||
25 | #include "md5_ext.h" | 27 | #include "md5_ext.h" |
26 | #include "mhd_assert.h" | 28 | #include "mhd_assert.h" |
27 | 29 | ||