mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
e904f193c1
With a bunch of LibC work to support the feature. LibC now initializes AK::StringImpl by default. It's now fine to use AK in LibC/Userland! :^)
14 lines
400 B
C
14 lines
400 B
C
#pragma once
|
|
|
|
extern "C" {
|
|
|
|
void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func);
|
|
|
|
#define assert(expr) (static_cast<bool>(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)
|
|
|
|
}
|
|
|