uglify headers for the sake of junk that compiles with gcc -std=c89/-ansi
[musl] / include / err.h
1 #ifndef _ERR_H
2 #define _ERR_H
3
4 #include <stdarg.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 void warn(const char *, ...);
11 void vwarn(const char *, va_list);
12 void warnx(const char *, ...);
13 void vwarnx(const char *, va_list);
14
15 void err(int, const char *, ...);
16 void verr(int, const char *, va_list);
17 void errx(int, const char *, ...);
18 void verrx(int, const char *, va_list);
19
20 #ifdef __cplusplus
21 }
22 #endif
23
24 #endif