#ifndef MACROS_H #define MACROS_H #define log(priority, ...) syslog(priority, __VA_ARGS__) #define did_fail(cond, ...) {\ if (cond) {\ log(LOG_ERR, __VA_ARGS__); \ return -1; \ }\ } #define did_fail_reason(cond, msg, ...) did_fail(cond, msg " Reason: %s", __VA_ARGS__) #endif