X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=util%2Ferror_util.h;h=a51f001f449822d8d671516d2e435881442e1e31;hp=4bb338a2abeacd1253c1287c39f8d6769e1c5405;hb=HEAD;hpb=6a833a6e83865f6999707cc30768d07e1351c2cb diff --git a/util/error_util.h b/util/error_util.h index 4bb338a2..a51f001f 100644 --- a/util/error_util.h +++ b/util/error_util.h @@ -25,6 +25,10 @@ #include "function-attributes.h" +#ifdef __cplusplus +extern "C" { +#endif + /* There's no point in continuing when we've detected that we've done * something wrong internally (as opposed to the user passing in a * bogus value). @@ -40,8 +44,11 @@ _internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2) NORETURN_ATTRI * * Note that __location__ comes from talloc.h. */ -#define INTERNAL_ERROR(format, ...) \ - _internal_error (format " (%s).\n", \ +#define INTERNAL_ERROR(format, ...) \ + _internal_error (format " (%s).\n", \ ##__VA_ARGS__, __location__) +#ifdef __cplusplus +} +#endif #endif