rizin/librz/debug/p/debug_null.c
Anton Kochkov 539f60a1a8
Rename radare to rizin (#68)
* Rename radare to rizin

- Rename REvent to RzEvent
- Rename RBreakpoint to RzBreakpoint
- Rename RRune to RzRune

* Remove unnecessary files
2020-11-04 18:56:27 +08:00

19 lines
374 B
C

// 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