From: Brendan Cully Date: Tue, 15 Mar 2005 04:40:40 +0000 (+0000) Subject: Don't define uint32_t anywhere but in config.h. Spotted by Alain Bench. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd4de139a8afb7a9b4496efb864c220e568748c2;p=neomutt Don't define uint32_t anywhere but in config.h. Spotted by Alain Bench. --- diff --git a/crypthash.h b/crypthash.h index d8e3a572e..0d1ededdb 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