diff options
| author | 2013-08-04 03:19:02 -0700 | |
|---|---|---|
| committer | 2013-08-04 03:19:02 -0700 | |
| commit | 44b20f474544bd524fd346447505ebed3c63e5c8 (patch) | |
| tree | 9dcd7dd6f3c2cdbd7127e432371a21770ab23eb1 /src/modules/m_md5.cpp | |
| parent | m_spanningtree Change the type of TreeServer::ServerName to std::string (diff) | |
| parent | Remove a ton of duplicate and obsolete code from configure. (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_md5.cpp')
| -rw-r--r-- | src/modules/m_md5.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/modules/m_md5.cpp b/src/modules/m_md5.cpp index 15cb979c6..dd72fe9ea 100644 --- a/src/modules/m_md5.cpp +++ b/src/modules/m_md5.cpp @@ -22,9 +22,6 @@ #include "inspircd.h" -#ifdef HAS_STDINT -#include <stdint.h> -#endif #include "modules/hash.h" /* The four core functions - F1 is optimized somewhat */ @@ -37,10 +34,6 @@ #define MD5STEP(f,w,x,y,z,in,s) \ (w += f(x,y,z) + in, w = (w<<s | w>>(32-s)) + x) -#ifndef HAS_STDINT -typedef unsigned int uint32_t; -#endif - typedef uint32_t word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */ typedef unsigned char byte; |
