aboutsummaryrefslogtreecommitdiff
path: root/lib/errors/warnx.c
blob: ea502993a508db8d0c3b70e257cbd02dea672bac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdarg.h>

#include "errors.h"

void
warnx(const char *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);
	vwarnx(fmt, ap);
	va_end(ap);
}