19 lines
358 B
C
19 lines
358 B
C
/* radare - LGPL - Copyright 2016-2017 pancake */
|
|
|
|
#include <r_io.h>
|
|
#include <r_debug.h>
|
|
|
|
RDebugPlugin r_debug_plugin_null = {
|
|
.name = "null",
|
|
.license = "MIT",
|
|
.arch = "any",
|
|
.bits = R_SYS_BITS_32 | R_SYS_BITS_64,
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
RLibStruct radare_plugin = {
|
|
.type = R_LIB_TYPE_DBG,
|
|
.data = &r_debug_plugin_null,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|