summaryrefslogtreecommitdiff
path: root/openbsd-compat/rmd160.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2015-04-17 10:40:23 +1000
committerDarren Tucker <dtucker@zip.com.au>2015-04-17 10:40:23 +1000
commitee15d9c9f0720f5a8b0b34e4b10ecf21f9824814 (patch)
tree435945c2099e8cbea67f212625028851227c7d4c /openbsd-compat/rmd160.c
parent408f4c2ad4a4c41baa7b9b2b7423d875abbfa70b (diff)
Wrap endian.h include inside ifdef (bz#2370).
Diffstat (limited to 'openbsd-compat/rmd160.c')
-rw-r--r--openbsd-compat/rmd160.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsd-compat/rmd160.c b/openbsd-compat/rmd160.c
index 2a14dd7b0..e915141a5 100644
--- a/openbsd-compat/rmd160.c
+++ b/openbsd-compat/rmd160.c
@@ -32,7 +32,9 @@
32#ifndef WITH_OPENSSL 32#ifndef WITH_OPENSSL
33 33
34#include <sys/types.h> 34#include <sys/types.h>
35#ifdef HAVE_ENDIAN_H
35#include <endian.h> 36#include <endian.h>
37#endif
36#include <string.h> 38#include <string.h>
37#include <rmd160.h> 39#include <rmd160.h>
38 40