diff options
author | Niels Möller <nisse@lysator.liu.se> | 2011-09-03 08:03:15 +0200 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2011-09-03 08:03:15 +0200 |
commit | ce4e5a48c7a50c203e10a6ef94ad640931917f5b (patch) | |
tree | 3580de4636d675af754806ff0c36875f704954e3 /ripemd160-compress.c | |
parent | 6b7e73ac40a0ce91bfe6c0687eeda1459ba5bd0d (diff) | |
download | nettle-ce4e5a48c7a50c203e10a6ef94ad640931917f5b.tar.gz |
Added missing include of config.h. Needed
for correct operation on big-endian systems.
Rev: nettle/ripemd160-compress.c:1.4
Diffstat (limited to 'ripemd160-compress.c')
-rw-r--r-- | ripemd160-compress.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ripemd160-compress.c b/ripemd160-compress.c index ca815fe4..66b25b29 100644 --- a/ripemd160-compress.c +++ b/ripemd160-compress.c @@ -20,6 +20,10 @@ * MA 02111-1307, USA. */ +#if HAVE_CONFIG_H +# include "config.h" +#endif + #include <string.h> #include "ripemd160.h" |