sort out some prototypes, put them where they belong.
[apps/madmutt.git] / help.c
diff --git a/help.c b/help.c
index a0d85c8..4bd1b01 100644 (file)
--- a/help.c
+++ b/help.c
 #include <ctype.h>
 #include <string.h>
 
-#include <lib-lib/macros.h>
-#include <lib-lib/file.h>
-#include <lib-lib/str.h>
-#include <lib-lib/mapping.h>
+#include <lib-lib/lib-lib.h>
 
 #include <lib-ui/curses.h>
 
@@ -101,7 +98,7 @@ static int print_macro (FILE * f, int maxwidth, const char **macro)
       wc = CharsetReplacement;
     }
     /* glibc-2.1.3's wcwidth() returns 1 for unprintable chars! */
-    if (IsWPrint (wc) && (w = wcwidth (wc)) >= 0) {
+    if (iswprint(wc) && (w = wcwidth (wc)) >= 0) {
       if (w > n)
         break;
       n -= w;