mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-15 00:05:20 +00:00
13 lines
423 B
C
13 lines
423 B
C
|
#include <stdarg.h>
|
||
|
|
||
|
void err_set_file(void *fp);
|
||
|
void err_set_exit(void (*ef)(int));
|
||
|
void err(int eval, const char *fmt, ...);
|
||
|
void verr(int eval, const char *fmt, va_list ap);
|
||
|
void errx(int eval, const char *fmt, ...);
|
||
|
void verrx(int eval, const char *fmt, va_list ap);
|
||
|
void warn(const char *fmt, ...);
|
||
|
void vwarn(const char *fmt, va_list ap);
|
||
|
void warnx(const char *fmt, ...);
|
||
|
void vwarnx(const char *fmt, va_list ap);
|