oops :)
[apps/madmutt.git] / lib.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10
11 #include <lib-lib/lib-lib.h>
12
13 #include "lib.h"
14
15 void mutt_nocurses_error (const char *fmt, ...)
16 {
17     va_list ap;
18
19     va_start(ap, fmt);
20     vfprintf(stderr, fmt, ap);
21     va_end(ap);
22     fputc('\n', stderr);
23 }