aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-02-04 22:35:02 +0100
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-02-04 22:35:02 +0100
commitde33d4594ea8b0e933c82c7f9108a43945870f97 (patch)
tree512190f8a3154f184af96abb019e29a70ba1ef4a /src
parent2f892f4c6bf56e585a624b12b77b992eabbd52e2 (diff)
downloadlibmicrohttpd-de33d4594ea8b0e933c82c7f9108a43945870f97.tar.gz
libmicrohttpd-de33d4594ea8b0e933c82c7f9108a43945870f97.zip
md5_ext.c: fixed missing include
Diffstat (limited to 'src')
-rw-r--r--src/microhttpd/md5_ext.c2
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