rizin/librz/debug/p/debug_null.c
Riccardo Schirone 53bf5c497f SPDX Copyright text for all files based on history
- Add LICENSES directory
- Download additional licenses used
- Add .reuse directory
- Add doc about SPDX/reuse

Co-authored-by: Florian Märkl <info@florianmaerkl.de>
2021-03-05 19:39:15 +08:00

20 lines
441 B
C

// SPDX-FileCopyrightText: 2016-2017 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#include <rz_io.h>
#include <rz_debug.h>
RzDebugPlugin rz_debug_plugin_null = {
.name = "null",
.license = "MIT",
.arch = "any",
.bits = RZ_SYS_BITS_32 | RZ_SYS_BITS_64,
};
#ifndef RZ_PLUGIN_INCORE
RZ_API RzLibStruct rizin_plugin = {
.type = RZ_LIB_TYPE_DBG,
.data = &rz_debug_plugin_null,
.version = RZ_VERSION
};
#endif