blob: ab9ac90f0b55da894f9203a660bebd26b40ab0a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LIBBSD_ERR_H
#define LIBBSD_ERR_H
#include <err.h>
extern void warnc (int code, const char *format, ...);
extern void vwarnc (int code, const char *format, va_list ap);
extern void errc (int status, int code, const char *format, ...);
extern void verrc (int status, int code, const char *format, va_list ap);
#endif
|