verrx

Name

verrx -- display formatted error message and exit

Synopsis

#include <stdarg.h>
#include <err.h>

void verrx(int eval, const char * fmt, va_list args);

Description

The verrx() shall behave as errx() except that instead of being called with a variable number of arguments, it is called with an argument list as defined by <stdarg.h>.

verrx() does not return, but exits with the value of eval.

Return Value

None.

Errors

None.