Duckstation/dep/cubeb/src/cubeb_assert.h

28 lines
911 B
C
Raw Normal View History

2020-01-10 04:59:53 +00:00
/*
* Copyright © 2017 Mozilla Foundation
*
* This program is made available under an ISC-style license. See the
* accompanying file LICENSE for details.
*/
#ifndef CUBEB_ASSERT
#define CUBEB_ASSERT
#include <stdio.h>
#include <stdlib.h>
/**
* This allow using an external release assert method. This file should only
* export a function or macro called XASSERT that aborts the program.
*/
2022-08-05 07:28:17 +00:00
#define XASSERT(expr) \
do { \
2020-01-10 04:59:53 +00:00
if (!(expr)) { \
fprintf(stderr, "%s:%d - fatal error: %s\n", __FILE__, __LINE__, #expr); \
abort(); \
} \
} while (0)
#endif