
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@689 ec53bebd-3082-4978-b11e-865c3cabbd6b
18 lines
254 B
C
18 lines
254 B
C
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
RCSID("$Id$");
|
|
#endif
|
|
|
|
#include "err.h"
|
|
|
|
void
|
|
vwarnx(const char *fmt, va_list ap)
|
|
{
|
|
#if 0
|
|
fprintf(stderr, "%s: ", __progname);
|
|
#endif
|
|
if (fmt != NULL)
|
|
vfprintf(stderr, fmt, ap);
|
|
fprintf(stderr, "\n");
|
|
}
|