File: errors.h

package info (click to toggle)
nbtscan 1.0.3-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 392 kB
  • ctags: 141
  • sloc: sh: 2,508; ansic: 1,141; makefile: 66
file content (8 lines) | stat: -rw-r--r-- 190 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
#if !defined ERRORS_H
#define ERRORS_H

#define err_die(error, quiet) if(!quiet) {perror(error); exit(1);};

#define err_print(error, quiet) if(!quiet) perror(error);

#endif /* ERRORS_H */