From: Richard Russon Date: Mon, 1 May 2017 02:29:35 +0000 (+0100) Subject: inttypes.h includes stdint.h X-Git-Tag: neomutt-20170526~38^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d1c19d9321abc6f94215aa1d0cbef5a3860fe8b;p=neomutt inttypes.h includes stdint.h is part of posix:2001 It includes --- diff --git a/crypthash.h b/crypthash.h index 8e1ac3bd3..0cd2a3acc 100644 --- a/crypthash.h +++ b/crypthash.h @@ -16,15 +16,8 @@ #ifndef _MUTT_CRYPTHASH_H #define _MUTT_CRYPTHASH_H 1 - #include -#ifdef HAVE_INTTYPES_H #include -#else -#ifdef HAVE_STDINT_H -#include -#endif -#endif /* POINTER defines a generic pointer type */ typedef unsigned char *POINTER; diff --git a/md5.h b/md5.h index 57fe7081d..e17246155 100644 --- a/md5.h +++ b/md5.h @@ -26,13 +26,8 @@ #define _MUTT_MD5_H 1 #include -#include -#ifdef HAVE_INTTYPES_H #include -#endif -#if defined(HAVE_STDINT_H) || defined(_LIBC) -#include -#endif +#include #ifndef __GNUC_PREREQ #if defined(__GNUC__) && defined(__GNUC_MINOR__) diff --git a/protos.h b/protos.h index 1ba7f1d55..4a3d976cd 100644 --- a/protos.h +++ b/protos.h @@ -19,10 +19,7 @@ #ifndef _MUTT_PROTOS_H #define _MUTT_PROTOS_H 1 -#ifdef HAVE_INTTYPES_H #include -#endif - #include "mbyte.h" #define MoreArgs(p) (*p->dptr && *p->dptr != ';' && *p->dptr != '#')