File: error.h

package info (click to toggle)
multitail 7.1.5-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 884 kB
  • sloc: ansic: 14,945; makefile: 119; sh: 28; perl: 25
file content (7 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
#define BOOL char
#define TRUE 1
#define FALSE 0

void error_exit_(BOOL show_errno, BOOL show_st, char *file, const char *function, int line, char *format, ...);

#define error_exit(x, y, fmt, ...) error_exit_(x, y, __FILE__, __PRETTY_FUNCTION__, __LINE__, fmt, ##__VA_ARGS__)