diff options
author | Attila Molnar <attilamolnar@hush.com> | 2013-08-04 03:19:02 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2013-08-04 03:19:02 -0700 |
commit | 44b20f474544bd524fd346447505ebed3c63e5c8 (patch) | |
tree | 9dcd7dd6f3c2cdbd7127e432371a21770ab23eb1 /src/modules/m_ripemd160.cpp | |
parent | c6b911132caba237f86280d1b2cb32ad3123f0da (diff) | |
parent | b4ba01f542447def04f1e327c4cf3a385e1b8a9b (diff) |
Merge pull request #593 from SaberUK/master+configure-shuffle
Remove a ton of duplicate and obsolete code from configure.
Diffstat (limited to 'src/modules/m_ripemd160.cpp')
-rw-r--r-- | src/modules/m_ripemd160.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/modules/m_ripemd160.cpp b/src/modules/m_ripemd160.cpp index 0e17c5137..ae8d15a30 100644 --- a/src/modules/m_ripemd160.cpp +++ b/src/modules/m_ripemd160.cpp @@ -59,20 +59,12 @@ /* macro definitions */ #include "inspircd.h" -#ifdef HAS_STDINT -#include <stdint.h> -#endif #include "modules/hash.h" #define RMDsize 160 -#ifndef HAS_STDINT -typedef unsigned char byte; -typedef unsigned int dword; -#else -typedef uint8_t byte; -typedef uint32_t dword; -#endif +typedef uint8_t byte; +typedef uint32_t dword; /* collect four bytes into one word: */ #define BYTES_TO_DWORD(strptr) \ |