blob: 6b63c6c4203066b746b18766115703424a8a293f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <stdarg.h>
_Noreturn void err(int ret, const char *fmt, ...);
_Noreturn void errx(int ret, const char *fmt, ...);
void warn(const char *fmt, ...);
void warnx(const char *fmt, ...);
void vwarn(const char *fmt, va_list args);
void vwarnx(const char *fmt, va_list args);
|