1/**
2  * D header file for OpenBSD err.h.
3  *
4  * Copyright: Copyright �� 2019, The D Language Foundation
5  * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
6  * Authors: Ernesto Castellotti
7  */
8module core.sys.openbsd.err;
9import core.stdc.stdarg : va_list;
10
11version (OpenBSD):
12extern (C):
13nothrow:
14@nogc:
15
16void err(int eval, scope const char* fmt, ...);
17void errc(int eval, int code, scope const char* fmt, ...);
18void errx(int eval, scope const char* fmt, ...);
19void warn(scope const char* fmt, ...);
20void warnc(int code, scope const char* fmt, ...);
21void warnx(scope const char* fmt, ...);
22void verr(int eval, scope const char* fmt, va_list args);
23void verrc(int eval, int code, scope const char* fmt, va_list args);
24void verrx(int eval, scope const char* fmt, va_list args);
25void vwarn(scope const char* fmt, va_list args);
26void vwarnc(int code, scope const char* fmt, va_list args);
27void vwarnx(scope const char* fmt, va_list args);
28