Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/md5.c
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2015-06-29 17:01:04 +0300
committerSteven Barth <steven@midlink.org>2015-06-29 17:09:32 +0300
commit32e49d687b6557a01a439a3e2a9eebdf638d4b03 (patch)
tree61ee07ba5a49902bfd58bb1988fe243c1f263833 /md5.c
parentd1c66ef1131d14f0ed197b368d03f71b964e45f8 (diff)
md5: include endian.h for musl, otherwise hashes are invalid for BE
Signed-off-by: Steven Barth <steven@midlink.org>
Diffstat (limited to 'md5.c')
-rw-r--r--md5.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/md5.c b/md5.c
index 13f8455..fd25282 100644
--- a/md5.c
+++ b/md5.c
@@ -52,6 +52,7 @@
#include <string.h>
#include <stdio.h>
+#include <endian.h>
#include "md5.h"