mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
819ce91395
I ran out of steam writing library routines and imported two BSD-licensed libc routines: sscanf() and getopt(). I will most likely rewrite them sooner or later. For now I just wanted to see figlet running.
16 lines
418 B
C
16 lines
418 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func);
|
|
|
|
#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
|
|
|