1 /** 2 * D header file for Solaris 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 */ 8 module core.sys.solaris.err; 9 import core.stdc.stdarg : va_list; 10 11 version (Solaris): 12 extern (C): 13 nothrow: 14 @nogc: 15 16 void err(int eval, scope const char* fmt, ...); 17 void errx(int eval, scope const char* fmt, ...); 18 void warn(scope const char* fmt, ...); 19 void warnx(scope const char* fmt, ...); 20 void verr(int eval, scope const char* fmt, va_list args); 21 void verrx(int eval, scope const char* fmt, va_list args); 22 void vwarn(scope const char* fmt, va_list args); 23 void vwarnx(scope const char* fmt, va_list args); 24