summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/SHA1.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/SHA1.h')
-rw-r--r--protocols/Xfire/src/SHA1.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/protocols/Xfire/src/SHA1.h b/protocols/Xfire/src/SHA1.h
index b95a00970f..2bb15df86a 100644
--- a/protocols/Xfire/src/SHA1.h
+++ b/protocols/Xfire/src/SHA1.h
@@ -30,9 +30,7 @@
#include <string.h> // Needed for strcat and strcpy
#include <iostream>
-#ifdef _MSC_VER
#include <stdlib.h>
-#endif
// If you're compiling big endian, just comment out the following line
#define SHA1_LITTLE_ENDIAN
@@ -46,22 +44,9 @@
#ifndef UINT_32
-#ifdef _MSC_VER
-
#define UINT_8 unsigned __int8
#define UINT_32 unsigned __int32
-#else
-
-#define UINT_8 unsigned char
-
-#if (ULONG_MAX == 0xFFFFFFFF)
-#define UINT_32 unsigned long
-#else
-#define UINT_32 unsigned int
-#endif
-
-#endif
#endif