gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] branch master updated: md5.c/.h: lowered nu


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: md5.c/.h: lowered number of included files.
Date: Fri, 19 Apr 2019 22:00:27 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new d56c41f6 md5.c/.h: lowered number of included files.
d56c41f6 is described below

commit d56c41f6f7f72a089b309fb2b310388bb5e33be4
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Fri Apr 19 23:00:14 2019 +0300

    md5.c/.h: lowered number of included files.
---
 src/microhttpd/md5.c | 5 ++++-
 src/microhttpd/md5.h | 4 +++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/md5.c b/src/microhttpd/md5.c
index 3f239f2f..08ed6ee5 100644
--- a/src/microhttpd/md5.c
+++ b/src/microhttpd/md5.c
@@ -19,7 +19,10 @@
  * Optimized by Karlson2k (Evgeny Grin). */
 
 #include "md5.h"
-#include "mhd_byteorder.h"
+#include <string.h>
+#ifdef HAVE_MEMORY_H
+#include <memory.h>
+#endif /* HAVE_MEMORY_H */
 #include "mhd_bithelpers.h"
 #include "mhd_assert.h"
 
diff --git a/src/microhttpd/md5.h b/src/microhttpd/md5.h
index 819d515d..0c1acab1 100644
--- a/src/microhttpd/md5.h
+++ b/src/microhttpd/md5.h
@@ -18,7 +18,9 @@
 #ifndef MHD_MD5_H
 #define MHD_MD5_H
 
-#include "platform.h"
+#include "mhd_options.h"
+#include <stdint.h>
+#include <stddef.h>
 
 #define        MD5_BLOCK_SIZE              64
 #define        MD5_DIGEST_SIZE             16

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]