X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=util%2Ferror_util.h;h=aa3b77c43fd92d95ac55babf345b977861644333;hb=75bdce79527571c12c5de0c630747d6262b73fbd;hp=bb158220a3d8d4c8cc09e1f7e9af731135f1f160;hpb=1dedfc90f6eee7cad10f1a1ceb39a7a1c4dbd1b1;p=notmuch diff --git a/util/error_util.h b/util/error_util.h index bb158220..aa3b77c4 100644 --- a/util/error_util.h +++ b/util/error_util.h @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see http://www.gnu.org/licenses/ . + * along with this program. If not, see https://www.gnu.org/licenses/ . * * Author: Carl Worth */ @@ -23,14 +23,20 @@ #include +#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). * * Note that PRINTF_ATTRIBUTE comes from talloc.h */ -int -_internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2); +void +_internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2) NORETURN_ATTRIBUTE; /* 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 @@ -42,4 +48,7 @@ _internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2); _internal_error (format " (%s).\n", \ ##__VA_ARGS__, __location__) +#ifdef __cplusplus +} +#endif #endif