X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib.c;h=2bc65cea0156a740d9a17b79f8319f2d3f8255e0;hp=39676a5a997e563f04542ea16bfe34bb925c5386;hb=916e4872caf252a5850e64f79427b9dd7808435d;hpb=06797b065bbd5d88bf473c4b9f8525dcb9990bb7 diff --git a/lib.c b/lib.c index 39676a5..2bc65ce 100644 --- a/lib.c +++ b/lib.c @@ -8,40 +8,16 @@ * please see the file GPL in the top level source directory. */ -/* - * This file used to contain some more functions, namely those - * which are now in muttlib.c. They have been removed, so we have - * some of our "standard" functions in external programs, too. - */ - -#if HAVE_CONFIG_H -# include "config.h" -#endif - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include +#include #include "lib.h" void mutt_nocurses_error (const char *fmt, ...) { - va_list ap; + va_list ap; - va_start (ap, fmt); - vfprintf (stderr, fmt, ap); - va_end (ap); - fputc ('\n', stderr); + va_start(ap, fmt); + vfprintf(stderr, fmt, ap); + va_end(ap); + fputc('\n', stderr); } -