mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 07:17:01 +00:00
a1f45dbf8a
- r_debug_ptrace is now static by default * Some code cleanup and warnings removal * Added hg-utils.mk and MKPLUGINS directive in user-config * Initial implementation of dbg_gdb r_debug plugin - Import ERESI's libgdbwrap from r1 * Add some missing files (asm/p/fastcall_mips.h, core/t/ragrep2.c) * Added r_str_bool helper to get "true"/"false" from int
16 lines
245 B
C
16 lines
245 B
C
static struct r_asm_fastcall_t fastcall[R_ASM_FASTCALL_ARGS] = {
|
|
{ NULL },
|
|
{ "a0", NULL },
|
|
{ "a0", "a1", NULL },
|
|
{ "a0", "a1", "a2", NULL },
|
|
{ "a0", "a1", "a2", "a3", NULL },
|
|
NULL
|
|
};
|
|
|
|
/*
|
|
main()
|
|
{
|
|
printf("%s\n", fastcall[3]->arg[0]);
|
|
}
|
|
*/
|