summaryrefslogtreecommitdiffstats
path: root/crypthash.h
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2005-03-15 04:40:40 +0000
committerBrendan Cully <brendan@kublai.com>2005-03-15 04:40:40 +0000
commit10c07f86f6493ad36a245700dc278b32333a8674 (patch)
tree5762c87d379dd7c15d05e2303290ecaa651558d3 /crypthash.h
parentc90f0673666afa9f661586470e65e0665534ba5a (diff)
Don't define uint32_t anywhere but in config.h. Spotted by Alain Bench.
Diffstat (limited to 'crypthash.h')
-rw-r--r--crypthash.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/crypthash.h b/crypthash.h
index d8e3a572..0d1ededd 100644
--- a/crypthash.h
+++ b/crypthash.h
@@ -14,12 +14,4 @@
/* POINTER defines a generic pointer type */
typedef unsigned char *POINTER;
-# ifndef HAVE_UINT32_T
-# if SIZEOF_INT == 4
-typedef unsigned int uint32_t;
-# elif SIZEOF_LONG == 4
-typedef unsigned long uint32_t;
-# endif
-# endif
-
#endif