mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 16:59:08 +00:00
12 lines
236 B
C
12 lines
236 B
C
/* radare - LGPL - Copyright 2009-2016 pancake */
|
|
|
|
#define R_BIN_ELF64 1
|
|
#include "bin_write_elf.c"
|
|
|
|
RBinWrite r_bin_write_elf64 = {
|
|
.scn_resize = &scn_resize,
|
|
.scn_perms = &scn_perms,
|
|
.rpath_del = &rpath_del,
|
|
.entry = &chentry,
|
|
};
|