Blame


1 36b85cff 2023-05-06 op #include "../config.h"
2 36b85cff 2023-05-06 op
3 36b85cff 2023-05-06 op #ifndef __dead
4 36b85cff 2023-05-06 op # define __dead __attribute__((noreturn))
5 36b85cff 2023-05-06 op #endif
6 36b85cff 2023-05-06 op
7 36b85cff 2023-05-06 op __dead void err(int, const char *, ...)
8 36b85cff 2023-05-06 op __attribute__((__format__ (printf, 2, 3)));
9 36b85cff 2023-05-06 op __dead void errx(int, const char *, ...)
10 36b85cff 2023-05-06 op __attribute__((__format__ (printf, 2, 3)));
11 36b85cff 2023-05-06 op void warn(int, const char *, ...)
12 36b85cff 2023-05-06 op __attribute__((__format__ (printf, 1, 2)));
13 36b85cff 2023-05-06 op void warnx(int, const char *, ...)
14 36b85cff 2023-05-06 op __attribute__((__format__ (printf, 1, 2)));