rationnalize includes a lot:
[apps/madmutt.git] / pop / mx_pop.c
index 95f2fb6..fd4ab46 100644 (file)
@@ -3,30 +3,20 @@
  * It's licensed under the GNU General Public License,
  * please see the file GPL in the top level source directory.
  */
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
 
-#include <sys/stat.h>
-
-#include <lib-lib/mem.h>
-#include <lib-lib/str.h>
+#include <lib-lib/lib-lib.h>
 
 #include "mutt.h"
 #include "pop.h"
-
 #include "mx.h"
 #include "mx_pop.h"
 
-
-#include "url.h"
-
-static int pop_is_magic (const char* path, struct stat* st) {
+static int pop_is_magic (const char* path, struct stat* st __attribute__ ((unused))) {
   url_scheme_t s = url_check_scheme (NONULL (path));
   return ((s == U_POP || s == U_POPS) ? M_POP : -1);
 }
 
-static int acl_check_pop (CONTEXT* ctx, int bit) {
+static int acl_check_pop (CONTEXT* ctx __attribute__ ((unused)), int bit) {
   switch (bit) {
     case ACL_INSERT:    /* editing messages */
     case ACL_WRITE:     /* change importance */