Browse Source

WARN and FATAL macros

master
Bert 14 years ago
parent
commit
bbe7ae0470
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      sxiv.h

+ 18
- 0
sxiv.h View File

@@ -23,4 +23,22 @@


#define VERSION "git-20110117" #define VERSION "git-20110117"


#define WARN(...) \
do { \
fprintf(stderr, "sxiv: %s:%d: warning: ", __FILE__, __LINE__); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n"); \
} while (0)

#define FATAL(...) \
do { \
fprintf(stderr, "sxiv: %s:%d: error: ", __FILE__, __LINE__); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n"); \
cleanup(); \
exit(1); \
} while (0)

void cleanup();

#endif /* SXIV_H */ #endif /* SXIV_H */

Loading…
Cancel
Save