mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-02-27 12:16:34 +00:00
18 lines
314 B
C
18 lines
314 B
C
#ifndef _ERR_H_
|
|
#define _ERR_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define warnx(...) do { \
|
|
fprintf (stderr, __VA_ARGS__); \
|
|
fprintf (stderr, "\n"); \
|
|
} while (0)
|
|
|
|
#define errx(code, ...) do { \
|
|
fprintf (stderr, __VA_ARGS__); \
|
|
fprintf (stderr, "\n"); \
|
|
exit (code); \
|
|
} while (0)
|
|
|
|
#endif /* !_ERR_H_ */
|