mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-24 23:06:36 +00:00
d196c755dd
keep a "private" version named io_map_add that can be used for performance reaons internally in the io module.
8 lines
253 B
C
8 lines
253 B
C
#ifndef _IO_PRIVATE_H_
|
|
#define _IO_PRIVATE_H_
|
|
|
|
RIOMap *io_map_new(RIO *io, int fd, int flags, ut64 delta, ut64 addr, ut64 size, bool do_skyline);
|
|
RIOMap *io_map_add(RIO *io, int fd, int flags, ut64 delta, ut64 addr, ut64 size, bool do_skyline);
|
|
|
|
#endif
|