summaryrefslogtreecommitdiff
path: root/LibC/assert.h
blob: 546dcc90a7c61aaf23f085e4c9cc3370a394a464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <sys/cdefs.h>

__BEGIN_DECLS

void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func) __NORETURN;

#define assert(expr) ((expr) ? (void)0 : __assertion_failed(#expr, __FILE__, __LINE__, __PRETTY_FUNCTION__))
#define CRASH() do { asm volatile("ud2"); } while(0)
#define ASSERT assert
#define RELEASE_ASSERT assert
#define ASSERT_NOT_REACHED() assert(false)

__END_DECLS