]> granicus.if.org Git - neomutt/commitdiff
Don't define uint32_t anywhere but in config.h. Spotted by Alain Bench.
authorBrendan Cully <brendan@kublai.com>
Tue, 15 Mar 2005 04:40:40 +0000 (04:40 +0000)
committerBrendan Cully <brendan@kublai.com>
Tue, 15 Mar 2005 04:40:40 +0000 (04:40 +0000)
crypthash.h

index d8e3a572e697ab606f6bc2b6ce78c2d7a938c82a..0d1ededdbc366cafd57dbc474b1bfd178d1f79b6 100644 (file)
 /* 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