From: Richard Russon Date: Mon, 8 Jul 2019 21:42:38 +0000 (+0100) Subject: iwyu: tidy #includes X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c7f1a6f41ee67a4f4fdc3793c6477e3fae521960;p=neomutt iwyu: tidy #includes --- diff --git a/help/help.c b/help/help.c index cb76ac9e1..43f0d1c12 100644 --- a/help/help.c +++ b/help/help.c @@ -24,14 +24,14 @@ #include "config.h" #include -#include #include +#include #include #include #include +#include #include #include -#include #include #include #include "mutt/mutt.h" @@ -40,14 +40,13 @@ #include "core/lib.h" #include "email/lib.h" #include "help.h" -#include "context.h" #include "globals.h" #include "mutt_header.h" -#include "mutt_options.h" #include "mutt_thread.h" #include "muttlib.h" #include "mx.h" -#include "protos.h" + +struct stat; #define HELP_CACHE_DOCLIST \ 1 ///< whether to cache the DocList between help_mbox_open calls diff --git a/help/help.h b/help/help.h index 14bb62462..9278b0e74 100644 --- a/help/help.h +++ b/help/help.h @@ -25,8 +25,9 @@ #ifndef MUTT_HELP_HELP_H #define MUTT_HELP_HELP_H +#include +#include #include "mx.h" -#include extern struct MxOps MxHelpOps;