You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
472 B
26 lines
472 B
#ifndef _ERR_H
|
|
#define _ERR_H
|
|
|
|
#include <features.h>
|
|
#include <stdarg.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void warn(const char *, ...);
|
|
void vwarn(const char *, va_list);
|
|
void warnx(const char *, ...);
|
|
void vwarnx(const char *, va_list);
|
|
|
|
_Noreturn void err(int, const char *, ...);
|
|
_Noreturn void verr(int, const char *, va_list);
|
|
_Noreturn void errx(int, const char *, ...);
|
|
_Noreturn void verrx(int, const char *, va_list);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|