1 /* radare - LGPL - Copyright 2016-2017 pancake */
2 
3 #include <r_io.h>
4 #include <r_debug.h>
5 
6 RDebugPlugin r_debug_plugin_null = {
7 	.name = "null",
8 	.license = "MIT",
9 	.arch = "any",
10 	.bits = R_SYS_BITS_32 | R_SYS_BITS_64,
11 };
12 
13 #ifndef R2_PLUGIN_INCORE
14 R_API RLibStruct radare_plugin = {
15 	.type = R_LIB_TYPE_DBG,
16 	.data = &r_debug_plugin_null,
17 	.version = R2_VERSION
18 };
19 #endif
20