blob: 82a63287cce362b7336840a8165c1d039ff9c415 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef NQ_COMMON_H
#define NQ_COMMON_H
#include <errno.h>
#include <stdio.h>
extern const char *progname;
#define ERROR(...) \
do { \
fprintf(stderr, "%s: ", progname); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n"); \
} while (0)
#define PERROR(str) \
do { \
int err = errno; \
fprintf(stderr, "%s: ", progname); \
errno = err; \
perror(str); \
} while (0)
#endif
|