mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
e33bbdb6ba
Whatever this was supposed to be, it was ironically... not implemented.
17 lines
287 B
C
17 lines
287 B
C
#pragma once
|
|
|
|
#ifndef AK_TEST_SUITE
|
|
|
|
#ifdef KERNEL
|
|
# include <Kernel/Assertions.h>
|
|
#else
|
|
# include <assert.h>
|
|
# ifndef __serenity__
|
|
# define ASSERT assert
|
|
# define ASSERT_NOT_REACHED() assert(false)
|
|
# define RELEASE_ASSERT assert
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|
|
|