/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #if defined(KERNEL) # include #else # include # define VERIFY assert # define VERIFY_NOT_REACHED() assert(false) # define TODO VERIFY_NOT_REACHED #endif