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

#include "errors.h"

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