Files
heimdal/appl/ftp/common/errx.c
Unknown User d91-jda 7686c38ea0 Version 0.0
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@387 ec53bebd-3082-4978-b11e-865c3cabbd6b
1996-04-08 22:51:40 +00:00

17 lines
202 B
C

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "err.h"
RCSID("$Id$");
void
errx(int eval, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
verrx(eval, fmt, ap);
va_end(ap);
}